File: postinst

package info (click to toggle)
oidentd 2.0.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 840 kB
  • ctags: 505
  • sloc: ansic: 5,290; sh: 3,215; yacc: 364; lex: 335; makefile: 101
file content (13 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

# remove other ident daemons from inetd
if [ -x /usr/sbin/update-inetd ]; then
	update-inetd --remove ident
fi

# notify when config needs changes
oidentdconfig || true

#DEBHELPER#