Initialize Git Repository: 'Pironman5'
All checks were successful
Pironman 5 Daemon (Bookworm) / Pironman 5 Daemon [arm64] (push) Successful in 11s
Pironman 5 Daemon (Trixie) / Pironman 5 Daemon [arm64] (push) Successful in 11s

This commit is contained in:
Cantibra
2026-01-26 06:10:22 +01:00
commit 80210e740a
19 changed files with 1117 additions and 0 deletions

21
root/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/sh
set -e
set -u
case "${1}" in
remove)
if [ -x '/usr/bin/deb-systemd-invoke' ]; then
/usr/bin/deb-systemd-invoke stop 'pironman5.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke stop 'pironman5-err.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'pironman5.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if [ -x '/etc/init.d/pironman5' ]; then
/usr/sbin/update-rc.d 'pironman5' remove > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac