File: postinst.debhelper

package info (click to toggle)
dnprogs 2.43.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,936 kB
  • ctags: 3,872
  • sloc: ansic: 24,686; cpp: 10,608; makefile: 769; sh: 551; awk: 13
file content (10 lines) | stat: -rw-r--r-- 308 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# Automatically added by dh_installinit
if [ -x "/etc/init.d/decnet" ]; then
	update-rc.d decnet start 39 S .  stop 11 1 . >/dev/null
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d decnet start || exit $?
	else
		/etc/init.d/decnet start || exit $?
	fi
fi
# End automatically added section