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