don't care if the livesupport-station service can not be added to

the default runlevel, or can not be started...
This commit is contained in:
maroy 2005-04-27 09:36:19 +00:00
parent fe42c9bd83
commit 6cb75058f0

View file

@ -31,11 +31,11 @@ case "$1" in
--apache-group $apache_group \
--www-root $apache_docroot
# register and start the livesupport scheduler deamon
update-rc.d livesupport-station defaults 40
update-rc.d livesupport-station defaults 40 || true
if command -v invoke-rc.d >/dev/null 2>&1 ; then
invoke-rc.d livesupport-station start
invoke-rc.d livesupport-station start || true
else
/etc/init.d/livesupport-station start
/etc/init.d/livesupport-station start || true
fi
;;