File: prerm

package info (click to toggle)
oidentd 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,436 kB
  • sloc: ansic: 6,838; sh: 4,356; yacc: 477; lex: 350; makefile: 83
file content (10 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# pre remove script for the Debian GNU/Linux oidentd package

set -e

if which update-inetd > /dev/null; then
	update-inetd --pattern "oidentd" --remove ident
fi

#DEBHELPER#