#!/bin/sh set -e if [ "$1" = "remove" ]; then if [ -x "$(command -v update-inetd)" ]; then update-inetd --remove telnet fi fi exit 0