Merge pull request #1425 from aptly-dev/fix/debian-compliance

postrm: remove aptly-api user and home directory on purge
This commit is contained in:
André Roth
2025-01-24 00:49:15 +01:00
committed by GitHub
Vendored Executable
+24
View File
@@ -0,0 +1,24 @@
#!/bin/sh
set -e
# source debconf library
. /usr/share/debconf/confmodule
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
# only remove aptly-api user and its homedir on purge
if [ "${1}" = "purge" ] ; then
userdel -r aptly-api
fi
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0