diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-11-15 19:23:30 +0800 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-11-15 19:23:30 +0800 |
commit | 0277521b268b21caf0ee21202b92784f302baadc (patch) | |
tree | 5d856f96adfbe46b57da31cf60daa1084b4e7a1e /ubuntu/_base/tdenetwork/debian/ktalkd-trinity.postinst | |
parent | eb16e7c7281e182297581fa8d565561869c81bca (diff) | |
download | tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip |
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/_base/tdenetwork/debian/ktalkd-trinity.postinst')
-rw-r--r-- | ubuntu/_base/tdenetwork/debian/ktalkd-trinity.postinst | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/ubuntu/_base/tdenetwork/debian/ktalkd-trinity.postinst b/ubuntu/_base/tdenetwork/debian/ktalkd-trinity.postinst deleted file mode 100644 index 44dfd6c24..000000000 --- a/ubuntu/_base/tdenetwork/debian/ktalkd-trinity.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 - - |