]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/redhat/bacula-sd.in
30Oct04
[bacula/bacula] / bacula / platforms / redhat / bacula-sd.in
index a4bfdd4f5a47a7964286014c23ea26d0562a2be5..cf8d1af373f6987193d5f129f7e3b46744a0766f 100755 (executable)
@@ -3,7 +3,7 @@
 # bacula       This shell script takes care of starting and stopping
 #             the bacula Storage daemon.
 #
-# chkconfig: 2345 20 99
+# chkconfig: 2345 90 9
 # description: It comes by night and sucks the vital essence from your computers.
 #
 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
 # Source function library
 . /etc/rc.d/init.d/functions
 
+SD_USER=@sd_user@
+SD_GROUP=@sd_group@
+OS=`uname -s`
+
+# if /lib/tls exists, force Bacula to use the glibc pthreads instead
+if [ -d "/lib/tls" -a $OS = "Linux" ] ; then
+     export LD_ASSUME_KERNEL=2.4.19
+fi
+RETVAL=0
 case "$1" in
     start)
+       OPTIONS=''
+       if [ "${SD_USER}" != '' ]; then
+         OPTIONS="${OPTIONS} -u ${SD_USER}"
+       fi
+                                                                                  
+       if [ "${SD_GROUP}" != '' ]; then
+         OPTIONS="${OPTIONS} -g ${SD_GROUP}"
+       fi
+                                                                                     
        echo -n "Starting the Bacula Storage daemon: "
-       daemon @sbindir@/bacula-sd $2 -c @sysconfdir@/bacula-sd.conf
+       daemon @sbindir@/bacula-sd $2 ${OPTIONS} -c @sysconfdir@/bacula-sd.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-sd