From 6cb75058f0294d52f124581643a36c8b94c876ca Mon Sep 17 00:00:00 2001 From: maroy Date: Wed, 27 Apr 2005 09:36:19 +0000 Subject: [PATCH] don't care if the livesupport-station service can not be added to the default runlevel, or can not be started... --- livesupport/etc/debian/livesupport-station.postinst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livesupport/etc/debian/livesupport-station.postinst b/livesupport/etc/debian/livesupport-station.postinst index 7b167e090..d8d7b193f 100644 --- a/livesupport/etc/debian/livesupport-station.postinst +++ b/livesupport/etc/debian/livesupport-station.postinst @@ -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 ;;