#! /bin/sh # # bacula This shell script takes care of starting and stopping # the bacula File daemon. # # chkconfig: 2345 91 9 # description: It comes by night and sucks the vital essence from your computers. # # For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ # # Source function library . /etc/rc.d/init.d/functions FD_USER=@fd_user@ FD_GROUP=@fd_group@ OS=`uname -s` # if /lib/tls exists, force Bacula to use the glibc pthreads instead if [ -d "/lib/tls" -a $OS = "Linux" ] ; then export LD_ASSUME_KERNEL=2.4.19 fi RETVAL=0 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 ${OPTIONS} -c @sysconfdir@/bacula-fd.conf RETVAL=$? echo [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-fd ;; stop) echo -n "Stopping the Bacula File daemon: " killproc @sbindir@/bacula-fd RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-fd ;; restart) $0 stop sleep 5 $0 start ;; status) status @sbindir@/bacula-fd ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1 ;; esac exit 0