File: postinst.debhelper

package info (click to toggle)
smtpd 2.0-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 432 kB
  • ctags: 298
  • sloc: ansic: 4,164; makefile: 121; sh: 87
file content (10 lines) | stat: -rw-r--r-- 273 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/smtpd" ]; then
	update-rc.d smtpd defaults >/dev/null
	if [ -x /usr/sbin/invoke-rc.d ]; then
		invoke-rc.d smtpd start || exit 0
	else
		/etc/init.d/smtpd start || exit 0
	fi
fi
# End automatically added section