blob: 1106b630c141f736a5e6331231625b54701c4491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -e
if [ "$1" = "remove" ]; then
if [ -x /usr/sbin/update-inetd ]; then
update-inetd --group STANDARD --remove '^(#<off># |)telnet'
fi
fi
#DEBHELPER#
exit 0
|