# 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
 
 # Source function library
 . /etc/rc.d/init.d/functions
 
+FD_USER=@fd_user@
+FD_GROUP=@fd_group@
+
 case "$1" in
     start)
+       OPTIONS=''
+       if [ "${FD_USER}" != '' ]; then
+         OPTIONS="${OPTIONS} -u ${FD_USER}"
+       fi
+                                                                                  
+       if [ "${FD_GROUP}" != '' ]; then
+         OPTIONS="${OPTIONS} -g ${FD_GROUP}"
+       fi
        echo -n "Starting the Bacula File daemon: "
-       daemon @sbindir@/bacula-fd $2 -c @sysconfdir@/bacula-fd.conf
+       daemon @sbindir@/bacula-fd $2 ${OPTIONS} -c @sysconfdir@/bacula-fd.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-fd
 
 # Source function library
 . /etc/rc.d/init.d/functions
 
+SD_USER=@sd_user@
+SD_GROUP=@sd_group@
+
 case "$1" in
     start)
+       OPTIONS=''
+       if [ "${SD_USER}" != '' ]; then
+         OPTIONS="${OPTIONS} -u ${SD_USER}"
+       fi
+                                                                                  
+       if [ "${SD_GROUP}" != '' ]; then
+         OPTIONS="${OPTIONS} -g ${SD_GROUP}"
+       fi
+                                                                                     
        echo -n "Starting the Bacula Storage daemon: "
-       daemon @sbindir@/bacula-sd $2 -c @sysconfdir@/bacula-sd.conf
+       daemon @sbindir@/bacula-sd $2 ${OPTIONS} -c @sysconfdir@/bacula-sd.conf
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-sd