summaryrefslogtreecommitdiff
path: root/debian/inetutils-talkd.postinst
blob: 945711261526ca11fd442443b92559fdc461e329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
  if [ -x /usr/sbin/update-inetd ]; then
    update-inetd --group BSD \
      --add "#<off># talk\tstream\ttcp\tnowait\troot\t/usr/sbin/talkd\ttalkd"
  fi
fi

#DEBHELPER#

exit 0