summaryrefslogtreecommitdiffstats
path: root/dilos/tdenetwork/debian/ktalkd-trinity.postrm
diff options
context:
space:
mode:
authorDenis Kozadaev <denis@dilos.org>2020-01-30 22:13:12 +0300
committerSlávek Banko <slavek.banko@axis.cz>2020-03-08 00:29:42 +0100
commit0b92bb9645416765f7d0b6dc2686ee3c7a67ed24 (patch)
tree92741ca5ad51b11d3c2f283f4d39ec51793f90b2 /dilos/tdenetwork/debian/ktalkd-trinity.postrm
parenta9906f4a86b022394a5ae45b372434cc84308ff0 (diff)
downloadtde-packaging-0b92bb9645416765f7d0b6dc2686ee3c7a67ed24.tar.gz
tde-packaging-0b92bb9645416765f7d0b6dc2686ee3c7a67ed24.zip
DilOS: tdenetwork build pack
Signed-off-by: Denis Kozadaev <denis@dilos.org>
Diffstat (limited to 'dilos/tdenetwork/debian/ktalkd-trinity.postrm')
-rw-r--r--dilos/tdenetwork/debian/ktalkd-trinity.postrm37
1 files changed, 37 insertions, 0 deletions
diff --git a/dilos/tdenetwork/debian/ktalkd-trinity.postrm b/dilos/tdenetwork/debian/ktalkd-trinity.postrm
new file mode 100644
index 000000000..8672360ca
--- /dev/null
+++ b/dilos/tdenetwork/debian/ktalkd-trinity.postrm
@@ -0,0 +1,37 @@
+#! /bin/sh
+# postrm script for ktalkd
+#
+# see: dh_installdeb(1)
+
+set -e
+if [ "${BASEDIR:=/}" = "/" ]; then
+ BASEDIR=""
+fi
+
+#remove_talk() {
+# if [ -x /usr/sbin/update-inetd ]
+# then
+# /usr/sbin/update-inetd --remove 'talk[ \t].*[ \t]/usr/sbin/ktalkd'
+# /usr/sbin/update-inetd --remove 'ntalk[ \t].*[ \t]/usr/sbin/ktalkd'
+# fi
+#}
+
+case "$1" in
+ purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+# remove_talk
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 0
+ ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+