]> git.pld-linux.org Git - packages/bacula.git/blame_incremental - bacula-fd.init
- 'special' users (those of running daemons) should not own files and directories...
[packages/bacula.git] / bacula-fd.init
... / ...
CommitLineData
1#! /bin/sh
2#
3# bacula This shell script takes care of starting and stopping
4# the bacula File daemon.
5#
6# chkconfig: 2345 91 99
7# description: It comes by night and sucks the vital essence from your computers.
8#
9
10# Source function library
11. /etc/rc.d/init.d/functions
12
13case "$1" in
14 start)
15 msg_starting "Bacula File"
16 daemon /usr/sbin/bacula-fd $2 -c /etc/bacula/bacula-fd.conf
17 RETVAL=$?
18 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/bacula-fd
19 ;;
20 stop)
21 msg_stopping "Bacula File"
22 killproc /usr/sbin/bacula-fd
23 RETVAL=$?
24 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/bacula-fd
25 ;;
26 restart)
27 $0 stop && sleep 5
28 $0 start
29 RETVAL=$?
30 ;;
31 status)
32 status /usr/sbin/bacula-fd
33 RETVAL=$?
34 ;;
35 *)
36 echo "Usage: $0 {start|stop|restart|status}"
37 exit 1
38 ;;
39esac
40exit $RETVAL
This page took 0.062305 seconds and 4 git commands to generate.