File: postinst.debhelper

package info (click to toggle)
openslp-dfsg 1.2.1-7.5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,556 kB
  • ctags: 2,620
  • sloc: ansic: 21,723; sh: 9,326; yacc: 597; lex: 335; makefile: 286
file content (10 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# Automatically added by dh_installinit
if [ -x "/etc/init.d/slpd" ]; then
	update-rc.d slpd defaults >/dev/null
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d slpd start || exit $?
	else
		/etc/init.d/slpd start || exit $?
	fi
fi
# End automatically added section