You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/debian/sipwise-asterisk.postinst.d...

11 lines
299 B

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