]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/platforms/redhat/bacula-dir.in
Fix RH start scripts to use -u and -g if specified
[bacula/bacula] / bacula / platforms / redhat / bacula-dir.in
index 61b3b29e7c0018445fcb0f866e8fb58fc9eba6d4..4b5dc8eee2ad6df650f46086038a7b27329f642c 100755 (executable)
 # Source function library
 . /etc/rc.d/init.d/functions
 
+DIR_USER=@dir_user@
+DIR_GROUP=@dir_group@
+
 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