aboutsummaryrefslogtreecommitdiff
path: root/DEBIAN/postrm
diff options
context:
space:
mode:
Diffstat (limited to 'DEBIAN/postrm')
-rwxr-xr-xDEBIAN/postrm4
1 files changed, 4 insertions, 0 deletions
diff --git a/DEBIAN/postrm b/DEBIAN/postrm
new file mode 100755
index 0000000..2c475d8
--- /dev/null
+++ b/DEBIAN/postrm
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+# whether removing an updated package or just removing it entirely, this is a good idea:
+systemctl daemon-reload 1>/dev/null 2>&1
bgstack15