Added insserv support for Debian install script.

This commit is contained in:
Matt Sicker 2012-09-02 13:29:17 -05:00
parent 526bb07a15
commit 6967455c8f

View File

@ -13,7 +13,8 @@ function install_dependencies() {
function reload_cron() { function reload_cron() {
install_log "Reloading cron service" install_log "Reloading cron service"
if [ -x $(which service) ]; then hash service 2>/dev/null
if [[ $? == 0 ]]; then
service cron reload service cron reload
else else
/etc/init.d/cron reload /etc/init.d/cron reload
@ -22,5 +23,10 @@ function reload_cron() {
function enable_init() { function enable_init() {
install_log "Enabling automatic startup and shutdown" install_log "Enabling automatic startup and shutdown"
hash insserv 2>/dev/null
if [[ $? == 0 ]]; then
insserv msm
else
update-rc.d msm defaults update-rc.d msm defaults
fi
} }