#! /bin/sh # # bacula This shell script takes care of starting and stopping # the bacula Director daemon # # chkconfig: 2345 90 9 # description: The Leading Open Source Backup Solution. # # For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ # RETVAL=0 case "$1" in start) echo "Starting the Bacula Director: " @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf RETVAL=$? echo [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir ;; stop) echo "Stopping the Director daemon: " # killproc @sbindir@/bacula-dir RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir ;; restart) $0 stop sleep 5 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac exit 0