]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/redhat/bacula-dir.in
30Oct04
[bacula/bacula] / bacula / platforms / redhat / bacula-dir.in
index 61b3b29e7c0018445fcb0f866e8fb58fc9eba6d4..84cca2904ab5b82226e3ae897d94dd0576527ce7 100755 (executable)
@@ -3,7 +3,7 @@
 # bacula       This shell script takes care of starting and stopping
 #             the bacula Director daemon
 #
-# chkconfig: 2345 92 99
+# chkconfig: 2345 92 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
 
+DIR_USER=@dir_user@
+DIR_GROUP=@dir_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 [ "${DIR_USER}" != '' ]; then
+         OPTIONS="${OPTIONS} -u ${DIR_USER}"
+       fi
+                                                                                  
+       if [ "${DIR_GROUP}" != '' ]; then
+         OPTIONS="${OPTIONS} -g ${DIR_GROUP}"
+       fi
        echo -n "Starting the Bacula Director: "
-       daemon @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf
+       daemon @sbindir@/bacula-dir $2 ${OPTIONS} -c @sysconfdir@/bacula-dir.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir