summaryrefslogtreecommitdiffstats
path: root/debian/screen.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/screen.postrm')
-rw-r--r--debian/screen.postrm16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/screen.postrm b/debian/screen.postrm
new file mode 100644
index 0000000..abc28ff
--- /dev/null
+++ b/debian/screen.postrm
@@ -0,0 +1,16 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = purge ] || [ "$1" = remove ]; then
+ rm -rf /run/screen
+fi
+
+if [ "$1" = purge ]; then
+ rm -vf /etc/tmpfiles.d/screen-cleanup.conf
+
+ # LP #1462692
+ rm -f /lib/systemd/system/screen-cleanup.service
+ rmdir -p --ignore-fail-on-non-empty /lib/systemd/system
+fi
+
+#DEBHELPER#