File: postinst

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 (12 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# remove other ident daemons from inetd
if which update-inetd > /dev/null; then
	update-inetd --remove ident
fi

adduser --system --group --home / --no-create-home --quiet oident

#DEBHELPER#