diff options
Diffstat (limited to 'ubuntu/maverick_automake/kdenetwork/debian/ktalkd-kde3.postinst')
-rw-r--r-- | ubuntu/maverick_automake/kdenetwork/debian/ktalkd-kde3.postinst | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/ubuntu/maverick_automake/kdenetwork/debian/ktalkd-kde3.postinst b/ubuntu/maverick_automake/kdenetwork/debian/ktalkd-kde3.postinst deleted file mode 100644 index 44dfd6c24..000000000 --- a/ubuntu/maverick_automake/kdenetwork/debian/ktalkd-kde3.postinst +++ /dev/null @@ -1,50 +0,0 @@ -#! /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 - - |