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