summaryrefslogtreecommitdiffstats
path: root/debian/screen.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:28:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:28:28 +0000
commit43d3000d71cbd653411373ed87df80ca6c9f228f (patch)
tree2bb2d326ca8a951f339a7a674637255ff71c1289 /debian/screen.postrm
parentAdding upstream version 4.9.0. (diff)
downloadscreen-debian.tar.xz
screen-debian.zip
Adding debian version 4.9.0-4.debian/4.9.0-4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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#