1
0
Fork 0
screen/debian/screen.postrm
Daniel Baumann ea1ae6b476
Adding debian version 4.9.1-3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 15:19:58 +02:00

16 lines
303 B
Bash

#!/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#