File: inetutils-telnetd.postrm

package info (click to toggle)
inetutils 2%3A2.4-2%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 14,804 kB
  • sloc: ansic: 114,137; sh: 10,305; yacc: 1,651; makefile: 637; perl: 72
file content (13 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

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

#DEBHELPER#

exit 0