#!/bin/sh set -e 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 "## $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#