File: postinst.debhelper

package info (click to toggle)
slash 2.2.6-8etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,672 kB
  • ctags: 1,915
  • sloc: perl: 23,113; sql: 1,878; sh: 433; makefile: 233
file content (10 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# Automatically added by dh_installinit
if [ -x "/etc/init.d/slash" ]; then
	update-rc.d slash defaults >/dev/null
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d slash start || exit $?
	else
		/etc/init.d/slash start || exit $?
	fi
fi
# End automatically added section