blob: abc28ff6d64a421867604fed726f6787fa2a898f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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#
|