bforce/debian/bforce.postinst.debhelper
Evgeniy Kozhuhovskiy cf2821ba67 cleanups
2005-04-07 22:10:29 +00:00

11 lines
289 B
Plaintext

# Automatically added by dh_installinit
if [ -x "/etc/init.d/bforce" ]; then
update-rc.d bforce defaults >/dev/null
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d bforce start || exit 0
else
/etc/init.d/bforce start || exit 0
fi
fi
# End automatically added section