]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/mandrake/bacula-sd.in
Backport from Bacula Enterprise
[bacula/bacula] / bacula / platforms / mandrake / bacula-sd.in
index f496b14f882fe114fa40f31c071d00be2c828cc0..61de07b7629edf100bb01e9f8876ef0aea4642a0 100755 (executable)
@@ -1,10 +1,13 @@
 #! /bin/sh
 #
+# Copyright (C) 2000-2015 Kern Sibbald
+# License: BSD 2-Clause; see file LICENSE-FOSS
+#
 # bacula       This shell script takes care of starting and stopping
 #             the bacula Storage daemon.
 #
 # chkconfig: 2345 90 9
-# description: It comes by night and sucks the vital essence from your computers.
+# description: The Leading Open Source Backup Solution.
 #
 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
 #
@@ -12,6 +15,7 @@
 # Source function library
 . /etc/rc.d/init.d/functions
 
+RETVAL=0
 case "$1" in
     start)
        echo -n "Starting the Bacula Storage daemon: "
@@ -31,6 +35,7 @@ case "$1" in
        $0 stop
        sleep 5
        $0 start
+       RETVAL=$?
        ;;
     status)
        status @sbindir@/bacula-sd
@@ -40,4 +45,4 @@ case "$1" in
        exit 1
        ;;
 esac
-exit 0
+exit $RETVAL