Initialize Git Repository: 'VLMCSD'
All checks were successful
VLMCSD / VLMCSD (amd64, bookworm trixie noble, main, x86_64-linux-gnu-gcc-12) (push) Successful in 16s
VLMCSD / VLMCSD (arm64, bookworm trixie noble, main, aarch64-linux-gnu-gcc-12) (push) Successful in 17s

This commit is contained in:
Cantibra
2026-03-19 14:16:41 +01:00
commit 8328d1b632
97 changed files with 25444 additions and 0 deletions

35
vlmcsd/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'