3 # bacula This shell script takes care of starting and stopping
4 # the bacula Storage daemon.
6 # chkconfig: 2345 20 99
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
17 echo -n "Starting the Bacula Storage daemon: "
18 daemon @sbindir@/bacula-sd $2 -c @sysconfdir@/bacula-sd.conf
21 [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-sd
24 echo -n "Stopping the Bacula Storage daemon: "
25 killproc @sbindir@/bacula-sd
28 [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-sd
36 status @sbindir@/bacula-sd
39 echo "Usage: $0 {start|stop|restart|status}"