3 # bacula This shell script takes care of starting and stopping
4 # the bacula Director daemon
7 # description: It comes by night and sucks the vital essence from your computers.
9 # For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
12 # Source function library
13 . /etc/rc.d/init.d/functions
18 echo -n "Starting the Bacula Director: "
19 daemon @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf
22 [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir
25 echo -n "Stopping the Director daemon: "
26 killproc @sbindir@/bacula-dir
29 [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir
37 status @sbindir@/bacula-dir
40 echo "Usage: $0 {start|stop|restart|status}"