1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/sh # debian/postrm - LIVEN post-removal script set -e case "$1" in remove|purge) if [ -d /run/systemd/system ] || [ -d /lib/systemd/system ]; then echo "Reloading systemd configuration..." systemctl daemon-reload || true fi ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac exit 0