summaryrefslogtreecommitdiff
path: root/debian/prerm
blob: 0a3def07b7f636dda86088bf38c7f7c32d24dd02 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

if [ "$1" = remove ] || [ "$1" = deconfigure ]; then
  # remove from /etc/shells
  /usr/sbin/remove-shell /usr/bin/screen || true
fi 

#DEBHELPER#