X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fplatforms%2Fredhat%2Fbacula-fd.in;h=4919337f8b1c8fae81c23319efe59ef8a2a457c2;hb=5b94358664b23f6696b693122259fea2c7b8aee6;hp=19f04f028b35d82bf480378100d82adefa260bcb;hpb=1ef84681d13d0c355d6ae78579d2afe1c8d8d0e2;p=bacula%2Fbacula diff --git a/bacula/platforms/redhat/bacula-fd.in b/bacula/platforms/redhat/bacula-fd.in index 19f04f028b..4919337f8b 100755 --- a/bacula/platforms/redhat/bacula-fd.in +++ b/bacula/platforms/redhat/bacula-fd.in @@ -3,7 +3,7 @@ # bacula This shell script takes care of starting and stopping # the bacula File daemon. # -# chkconfig: 2345 20 99 +# chkconfig: 2345 91 9 # description: It comes by night and sucks the vital essence from your computers. # # For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ @@ -12,16 +12,37 @@ # Source function library . /etc/rc.d/init.d/functions +FD_USER=@fd_user@ +FD_GROUP=@fd_group@ +FD_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 FD_OPTIONS, FD_USER, FD_GROUP +[ -f /etc/sysconfig/bacula ] && . /etc/sysconfig/bacula + +RETVAL=0 case "$1" in start) - echo -n "Starting the Bacula File daemon: " - daemon @sbindir@/bacula-fd $2 -c @sysconfdir@/bacula-fd.conf + if [ "${FD_USER}" != '' ]; then + FD_OPTIONS="${FD_OPTIONS} -u ${FD_USER}" + fi + + if [ "${FD_GROUP}" != '' ]; then + FD_OPTIONS="${FD_OPTIONS} -g ${FD_GROUP}" + fi + echo -n "Starting Bacula File services: " + daemon @sbindir@/bacula-fd $2 ${FD_OPTIONS} -c @sysconfdir@/bacula-fd.conf RETVAL=$? echo [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-fd ;; stop) - echo -n "Stopping the Bacula File daemon: " + echo -n "Stopping Bacula File services: " killproc @sbindir@/bacula-fd RETVAL=$? echo