summaryrefslogtreecommitdiffstats
path: root/autoscripts/postrm-systemd
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postrm-systemd')
-rw-r--r--autoscripts/postrm-systemd12
1 files changed, 12 insertions, 0 deletions
diff --git a/autoscripts/postrm-systemd b/autoscripts/postrm-systemd
new file mode 100644
index 0000000..d95013b
--- /dev/null
+++ b/autoscripts/postrm-systemd
@@ -0,0 +1,12 @@
+if [ "$1" = "remove" ]; then
+ if [ -x "/usr/bin/deb-systemd-helper" ]; then
+ deb-systemd-helper mask #UNITFILES# >/dev/null || true
+ fi
+fi
+
+if [ "$1" = "purge" ]; then
+ if [ -x "/usr/bin/deb-systemd-helper" ]; then
+ deb-systemd-helper purge #UNITFILES# >/dev/null || true
+ deb-systemd-helper unmask #UNITFILES# >/dev/null || true
+ fi
+fi