aboutsummaryrefslogtreecommitdiffstats
path: root/debian/nyancat-server.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/nyancat-server.postinst')
-rw-r--r--debian/nyancat-server.postinst25
1 files changed, 22 insertions, 3 deletions
diff --git a/debian/nyancat-server.postinst b/debian/nyancat-server.postinst
index c723125..757eea5 100644
--- a/debian/nyancat-server.postinst
+++ b/debian/nyancat-server.postinst
@@ -2,8 +2,27 @@
set -e
-# Set up nyancat
-update-inetd --group OTHER --add \
- '#<off># telnet\t\tstream\ttcp\tnowait\tnobody\t/usr/bin/nyancat\tnyancat -t'
+OLD_NYANCAT_ENTRY="telnet stream tcp nowait nobody /usr/bin/nyancat nyancat -t"
+RELEASE="1.0+git20120523.99dc310-1"
+
+case "$1" in
+ configure)
+ # if upgrading from previous non reconf-inetd version
+ if dpkg --compare-versions "$2" lt-nl "$RELEASE"; then
+ # remove previous update-inetd entry if unmodified
+ if fgrep -qx "#<off># $OLD_NYANCAT_ENTRY" /etc/inetd.conf || \
+ fgrep -qx "$OLD_NYANCAT_ENTRY" /etc/inetd.conf; then
+ if [ -x /usr/sbin/update-inetd ]; then
+ # remove nyancat reconf-inetd entries
+ update-inetd --multi --pattern nyancat --remove telnet || true
+ if [ -x /usr/sbin/reconf-inetd ]; then
+ # add the nyancat-server entries back again
+ reconf-inetd || true
+ fi
+ fi
+ fi
+ fi
+ ;;
+esac
#DEBHELPER#