Path : /var/lib/dpkg/info/
File Upload :
Current File : /var/lib/dpkg/info/inetutils-telnetd.postrm

#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
  if [ -x "$(command -v update-inetd)" ]; then
    update-inetd --remove telnet
  fi
fi



exit 0