Initialize Git Repository: 'VLMCSD'
VLMCSD / VLMCSD (amd64, cicd.bookworm, bookworm trixie noble, main, x86_64-linux-gnu-gcc-12) (push) Successful in 15s
VLMCSD / VLMCSD (arm64, cicd.bookworm, bookworm trixie noble, main, aarch64-linux-gnu-gcc-12) (push) Failing after 2m31s

This commit is contained in:
Cantibra
2026-05-04 21:22:10 +02:00
commit 50e015dc96
97 changed files with 25453 additions and 0 deletions
+35
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'