blob: c0f30883d34cbf774096ef5298bcf42a1a27ea33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
if [ "$1" = purge ] || [ "$1" = remove ]; then
rm -rf /var/run/screen /tmp/.screen
fi
if [ "$1" = disappear ]; then
/usr/sbin/remove-shell /usr/bin/screen || true
fi
#DEBHELPER#
|