summaryrefslogtreecommitdiff
path: root/debian/postinst
blob: 75af63cf69389a47cfd1d839efdc874fe77a5f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

. /usr/share/debconf/confmodule

if [ "$1" = configure ]; then
  if ! test -d /var/run/screen; then
    install -g utmp -m 0775 -d /var/run/screen
    [ `stat -c%a /usr/bin/screen` -lt 4000 ] || chmod 0755 /var/run/screen
  fi
  add-shell /usr/bin/screen || true
fi

#DEBHELPER#