You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
#! /bin/sh
|
|
# postinst script for ktalkd
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
talk_entry="talk dgram udp wait nobody.tty /usr/sbin/tcpd /usr/sbin/ktalkd"
|
|
ntalk_entry="ntalk dgram udp wait nobody.tty /usr/sbin/tcpd /usr/sbin/ktalkd"
|
|
|
|
enable_talk() {
|
|
update-inetd --pattern '[ \t]/usr/sbin/ktalkd' --enable talk
|
|
update-inetd --pattern '[ \t]/usr/sbin/ktalkd' --enable ntalk
|
|
}
|
|
|
|
remove_talk() {
|
|
update-inetd --remove 'talk[ \t].*[ \t]/usr/sbin/ktalkd'
|
|
update-inetd --remove 'ntalk[ \t].*[ \t]/usr/sbin/ktalkd'
|
|
}
|
|
|
|
case "$1" in
|
|
configure)
|
|
remove_talk
|
|
if grep -q ^talk /etc/inetd.conf; then
|
|
update-inetd --group BSD --add "#$talk_entry"
|
|
update-inetd --group BSD --add "#$ntalk_entry"
|
|
else
|
|
update-inetd --group BSD --add "$talk_entry"
|
|
update-inetd --group BSD --add "$ntalk_entry"
|
|
fi
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
enable_talk
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|
|
|