Inital Commit
All checks were successful
Reprepro Wrapper / Reprepro Wrapper [arm64] (push) Successful in 12s
Reprepro Wrapper / Reprepro Wrapper [amd64] (push) Successful in 11s

This commit is contained in:
Cantibra
2025-10-26 21:11:05 +01:00
commit d59fb7ee55
20 changed files with 1285 additions and 0 deletions

19
root/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,19 @@
#!/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 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke stop 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'reprepro-import.path' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'reprepro-morgue.timer' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac