]> git.sur5r.net Git - bacula/bacula/blob - bacula/platforms/redhat/bacula-dir.in
RPM changes for 1.35.8/1.36.0
[bacula/bacula] / bacula / platforms / redhat / 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 92 99
7 # description: It comes by night and sucks the vital essence from your computers.
8 #
9 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@
10 #
11
12 # Source function library
13 . /etc/rc.d/init.d/functions
14
15 DIR_USER=@dir_user@
16 DIR_GROUP=@dir_group@
17
18 RETVAL=0
19 case "$1" in
20     start)
21        OPTIONS=''
22        if [ "${DIR_USER}" != '' ]; then
23           OPTIONS="${OPTIONS} -u ${DIR_USER}"
24        fi
25                                                                                    
26        if [ "${DIR_GROUP}" != '' ]; then
27           OPTIONS="${OPTIONS} -g ${DIR_GROUP}"
28        fi
29        echo -n "Starting the Bacula Director: "
30        daemon @sbindir@/bacula-dir $2 ${OPTIONS} -c @sysconfdir@/bacula-dir.conf
31        RETVAL=$?
32        echo
33        [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir
34        ;;
35     stop)
36        echo -n "Stopping the Director daemon: "
37        killproc @sbindir@/bacula-dir
38        RETVAL=$?
39        echo
40        [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir
41        ;;
42     restart)
43        $0 stop
44        sleep 5
45        $0 start
46        ;;
47     status)
48        status @sbindir@/bacula-dir
49        ;;
50     *)
51        echo "Usage: $0 {start|stop|restart|status}"
52        exit 1
53        ;;
54 esac
55 exit 0