diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:04:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:04:16 +0000 |
commit | 85e405ba061ec9c7f23d9a9699b9fb4ac46eb7dd (patch) | |
tree | 93276fbd4a8419784e43c7e1b9a820f28c9a6a20 /debian/molly-guard.postrm | |
parent | Adding upstream version 0.7.2. (diff) | |
download | molly-guard-debian/0.7.2.tar.xz molly-guard-debian/0.7.2.zip |
Adding debian version 0.7.2.debian/0.7.2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/molly-guard.postrm')
-rwxr-xr-x | debian/molly-guard.postrm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/debian/molly-guard.postrm b/debian/molly-guard.postrm new file mode 100755 index 0000000..3f3e3e2 --- /dev/null +++ b/debian/molly-guard.postrm @@ -0,0 +1,48 @@ +#!/bin/sh +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postrm> `remove' +# * <postrm> `purge' +# * <old-postrm> `upgrade' <new-version> +# * <new-postrm> `failed-upgrade' <old-version> +# * <new-postrm> `abort-install' +# * <new-postrm> `abort-install' <old-version> +# * <new-postrm> `abort-upgrade' <old-version> +# * <disappearer's-postrm> `disappear' <overwriter> +# <overwriter-version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove) + for cmd in halt poweroff reboot shutdown coldreboot ; do + dpkg-divert --package molly-guard --rename --remove /sbin/$cmd + done + + for cmd in pm-hibernate pm-suspend pm-suspend-hybrid ; do + dpkg-divert --package molly-guard --rename --remove /usr/sbin/$cmd + done + + (test -d /lib/molly-guard && rmdir --ignore-fail-on-non-empty /lib/molly-guard) || true + ;; + + purge|upgrade|failed-upgrade|abort-upgrade|abort-install|disappear) + # Nothing to do + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 |