summaryrefslogtreecommitdiff
path: root/debian/postrm
blob: 652cc9b2e8b10c0555b973e63594fdc53d771a89 (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
fi

if [ "$1" = disappear ]; then
  remove-shell /usr/bin/screen || true
fi

#DEBHELPER#