#! /bin/sh # # bacula This shell script takes care of starting and stopping # the bacula Director daemon # # chkconfig: 2345 90 99 # description: It comes by night and sucks the vital essence from your computers. # # For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ # Modified to work on SuSE 1/31/2004 D. Scott Barninger # RETVAL=0 case "$1" in start) echo -n "Starting the Bacula Director: " /sbin/startproc @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf RETVAL=$? echo [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir ;; stop) echo -n "Stopping the Director daemon: " /sbin/killproc @sbindir@/bacula-dir RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir ;; restart) $0 stop sleep 5 $0 start ;; status) /sbin/checkproc @sbindir@/bacula-dir ;; *) echo "Usage: $0 {start|stop|restart|status}" exit 1 ;; esac exit 0