]> git.pld-linux.org Git - packages/bacula.git/blame - bacula-dir.init
- new scripts (nfy)
[packages/bacula.git] / bacula-dir.init
CommitLineData
cdaeb249
AM
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
15RETVAL=0
16case "$1" in
17 start)
18 echo -n "Starting the Bacula Director: "
19 daemon @sbindir@/bacula-dir $2 -c @sysconfdir@/bacula-dir.conf
20 RETVAL=$?
21 echo
22 [ $RETVAL -eq 0 ] && touch @subsysdir@/bacula-dir
23 ;;
24 stop)
25 echo -n "Stopping the Director daemon: "
26 killproc @sbindir@/bacula-dir
27 RETVAL=$?
28 echo
29 [ $RETVAL -eq 0 ] && rm -f @subsysdir@/bacula-dir
30 ;;
31 restart)
32 $0 stop
33 sleep 5
34 $0 start
35 ;;
36 status)
37 status @sbindir@/bacula-dir
38 ;;
39 *)
40 echo "Usage: $0 {start|stop|restart|status}"
41 exit 1
42 ;;
43esac
44exit 0
This page took 0.033629 seconds and 4 git commands to generate.