]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/redhat/bacula-sd.in
Fix #1648 about make_catalog_backup.pl with multiple catalog
[bacula/bacula] / bacula / platforms / redhat / bacula-sd.in
index ca8179fb13cf6cd6dbe3b3321677e7a7bf2e6eeb..ab5d8732c7a9546b8d21bcc08ba699624691faf8 100755 (executable)
@@ -4,7 +4,7 @@
 #             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@
 #
 
 SD_USER=@sd_user@
 SD_GROUP=@sd_group@
+SD_OPTIONS=''
+OS=`uname -s`
 
+# if /lib/tls exists, force Bacula to use the glibc pthreads instead
+if [ -d "/lib/tls" -a $OS = "Linux" -a `uname -r | cut -c1-3` = "2.4" ] ; then
+     export LD_ASSUME_KERNEL=2.4.19
+fi
+
+# pull in any user defined SD_OPTIONS, SD_USER, or SD_GROUP
+[ -f /etc/sysconfig/bacula ] && . /etc/sysconfig/bacula
+
+#
+# Disable Glibc malloc checks, it doesn't help and it keeps from getting
+#   good dumps
+MALLOC_CHECK_=0
+export MALLOC_CHECK_
+
+RETVAL=0
 case "$1" in
     start)
-       OPTIONS=''
        if [ "${SD_USER}" != '' ]; then
-         OPTIONS="${OPTIONS} -u ${SD_USER}"
+         SD_OPTIONS="${SD_OPTIONS} -u ${SD_USER}"
        fi
                                                                                   
        if [ "${SD_GROUP}" != '' ]; then
-         OPTIONS="${OPTIONS} -g ${SD_GROUP}"
+         SD_OPTIONS="${SD_OPTIONS} -g ${SD_GROUP}"
        fi
                                                                                      
-       echo -n "Starting the Bacula Storage daemon: "
-       daemon @sbindir@/bacula-sd $2 ${OPTIONS} -c @sysconfdir@/bacula-sd.conf
+       echo -n "Starting Bacula Storage services: "
+       daemon @sbindir@/bacula-sd $2 ${SD_OPTIONS} -c @sysconfdir@/bacula-sd.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-sd
        ;;
     stop)
-       echo -n "Stopping the Bacula Storage daemon: "
+       echo -n "Stopping Bacula Storage services: "
        killproc @sbindir@/bacula-sd
        RETVAL=$?
        echo
@@ -46,10 +62,11 @@ case "$1" in
        ;;
     status)
        status @sbindir@/bacula-sd
+       RETVAL=$?
        ;;
     *)
        echo "Usage: $0 {start|stop|restart|status}"
        exit 1
        ;;
 esac
-exit 0
+exit $RETVAL