]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/redhat/bacula-sd.in
Adjust for qwt in depkgs.
[bacula/bacula] / bacula / platforms / redhat / bacula-sd.in
index 2e9200bb4e046f76582c1abf3644a6c8944d1b1a..25edb43e2a2bcc9fe98ce8f19c8927a14b56077c 100755 (executable)
 
 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
+
 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 Bacula Storage services: "
-       daemon @sbindir@/bacula-sd $2 ${OPTIONS} -c @sysconfdir@/bacula-sd.conf
+       daemon @sbindir@/bacula-sd $2 ${SD_OPTIONS} -c @sysconfdir@/bacula-sd.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-sd