Initialize Git Repository: 'VLMCSD'
All checks were successful
VLMCSD (Bookworm) / VLMCSD [arm64] (push) Successful in 14s
VLMCSD (Bookworm) / VLMCSD [amd64] (push) Successful in 14s
VLMCSD (Noble) / VLMCSD [arm64] (push) Successful in 16s
VLMCSD (Noble) / VLMCSD [amd64] (push) Successful in 16s
VLMCSD (trixie) / VLMCSD [arm64] (push) Successful in 14s
VLMCSD (trixie) / VLMCSD [amd64] (push) Successful in 15s

This commit is contained in:
Cantibra
2026-01-26 06:11:03 +01:00
commit 5738c84bbc
101 changed files with 26092 additions and 0 deletions

35
root/DEBIAN/postrm Normal file
View File

@@ -0,0 +1,35 @@
#!/usr/bin/sh
set -e
set -u
if [ -d '/run/systemd/system' ]; then
/usr/bin/systemctl --system daemon-reload > '/dev/null' 2>&1 || \
/usr/bin/true
fi
case "${1}" in
remove)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper mask 'vlmcsd.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
purge)
if [ -x '/usr/bin/deb-systemd-helper' ]; then
/usr/bin/deb-systemd-helper purge 'vlmcsd.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-helper unmask 'vlmcsd.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if /usr/bin/getent passwd 'vlmcsd' > '/dev/null' 2>&1; then
/usr/sbin/deluser 'vlmcsd' > '/dev/null' 2>&1
fi
if /usr/bin/getent group 'vlmcsd' > '/dev/null' 2>&1; then
/usr/sbin/deluser --group 'vlmcsd' > '/dev/null' 2>&1
fi
;;
esac
/usr/bin/rm --force --recursive '/var/log/vlmcsd'
/usr/bin/rm --force --recursive '/var/logrotate/vlmcsd'