]> git.sur5r.net Git - bacula/bacula/blob - bacula/platforms/solaris/bacula-dir.in
Add Macro BTHREAD_MUTEX_PRIORITY(p) and lib/mutex_list.h to manage locks
[bacula/bacula] / bacula / platforms / solaris / 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 9
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 RETVAL=0
13 case "$1" in
14     start)
15        echo "Starting the Bacula Director: "
16        @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf
17        ;;
18     stop)
19        echo "Stopping the Director daemon: "
20        pkill -x bacula-dir
21        ;;
22     restart)
23        $0 stop
24        sleep 5
25        $0 start
26        ;;
27     *)
28        echo "Usage: $0 {start|stop|restart}"
29        exit 1
30        ;;
31 esac
32 exit 0