X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fplatforms%2Fredhat%2Fbacula-fd.in;h=3f1b55c1c6df45ca124b862d9f139bd09b44c502;hb=79f7d340dc030e10fd14dc3a151ca84c33381eb3;hp=9e7200832495b66085d38eecf610cd997de7fbf8;hpb=185a7010ae96c2e391d5f2c77fc42f14020621c4;p=bacula%2Fbacula diff --git a/bacula/platforms/redhat/bacula-fd.in b/bacula/platforms/redhat/bacula-fd.in index 9e72008324..3f1b55c1c6 100755 --- a/bacula/platforms/redhat/bacula-fd.in +++ b/bacula/platforms/redhat/bacula-fd.in @@ -14,25 +14,35 @@ 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" ] ; then +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 + +# +# 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 [ "${FD_USER}" != '' ]; then - OPTIONS="${OPTIONS} -u ${FD_USER}" + FD_OPTIONS="${FD_OPTIONS} -u ${FD_USER}" fi if [ "${FD_GROUP}" != '' ]; then - OPTIONS="${OPTIONS} -g ${FD_GROUP}" + FD_OPTIONS="${FD_OPTIONS} -g ${FD_GROUP}" fi echo -n "Starting Bacula File services: " - daemon @sbindir@/bacula-fd $2 ${OPTIONS} -c @sysconfdir@/bacula-fd.conf + daemon @sbindir@/bacula-fd $2 ${FD_OPTIONS} -c @sysconfdir@/bacula-fd.conf RETVAL=$? echo [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-fd