#! /bin/sh # # bacula This shell script takes care of starting and stopping # the bacula Director daemon # # chkconfig: 2345 92 9 # description: It comes by night and sucks the vital essence from your computers. # # 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 ;; stop) echo "Stopping the Director daemon: " pkill -x bacula-dir ;; restart) $0 stop sleep 5 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac exit 0