]> git.sur5r.net Git - bacula/bacula/blob - bacula/platforms/suse/bacula-dir.in
Integrate Phil's Makefile patch
[bacula/bacula] / bacula / platforms / suse / bacula-dir.in
1 #! /bin/sh
2 #
3 # bacula       This shell script takes care of starting and stopping
4 #              the bacula Director daemon
5 #
6 # chkconfig: 2345 90 99
7 # description: It comes by night and sucks the vital essence from your computers.
8 #
9 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
10 # Modified to work on SuSE 1/31/2004 D. Scott Barninger <barninger at fairfieldcomputers.com>
11 #
12
13
14 RETVAL=0
15 case "$1" in
16     start)
17        echo -n "Starting the Bacula Director: "
18        /sbin/startproc @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf
19        RETVAL=$?
20        echo
21        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir
22        ;;
23     stop)
24        echo -n "Stopping the Director daemon: "
25        /sbin/killproc @sbindir@/bacula-dir
26        RETVAL=$?
27        echo
28        [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir
29        ;;
30     restart)
31        $0 stop
32        sleep 5
33        $0 start
34        ;;
35     status)
36        /sbin/checkproc @sbindir@/bacula-dir
37        ;;
38     *)
39        echo "Usage: $0 {start|stop|restart|status}"
40        exit 1
41        ;;
42 esac
43 exit 0