summaryrefslogtreecommitdiffstats
path: root/debian/molly-guard.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:27:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:27:32 +0000
commitd466f0b2fe1ce833e23a7ad94fe7e7c5806a1503 (patch)
tree93276fbd4a8419784e43c7e1b9a820f28c9a6a20 /debian/molly-guard.postrm
parentAdding upstream version 0.7.2. (diff)
downloadmolly-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-xdebian/molly-guard.postrm48
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