]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.init
- new
[packages/rsync.git] / rsync.init
1 #!/bin/sh
2 #
3 # rsyncd        This shell script takes care of starting and stopping rsyncd
4 #
5 # chkconfig:    345 90 25
6 # description:  rsync daemon
7 # processname:  rsync
8 #
9 # pidfile:      /var/run/rsyncd.pid
10
11 # Source function library.
12 . /etc/rc.d/init.d/functions
13
14 # Source networking configuration.
15 . /etc/sysconfig/network
16
17 # Check that networking is up.
18 if is_yes "${NETWORKING}"; then
19         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
20                 msg_network_down rsyncd
21                 exit 1
22         fi
23 else
24         exit 0
25 fi
26
27 # Get service configuration
28 [ -f /etc/sysconfig/rsyncd ] && . /etc/sysconfig/rsyncd
29
30 RETVAL=0
31 # See how we were called.
32 case "$1" in
33   start)
34         # Start daemons.
35         if [ ! -f /var/lock/subsys/rsyncd ]; then
36                 msg_starting rsyncd
37                 daemon rsync --daemon ${RSYNC_OPTIONS}
38                 RETVAL=$?
39                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/rsyncd
40         else
41                 msg_already_running rsyncd
42         fi
43         ;;
44   stop)
45         # Stop daemons.
46         if [ -f /var/lock/subsys/rsyncd ]; then
47                 msg_stopping rsyncd
48                 killproc rsync
49                 rm -f /var/lock/subsys/rsyncd >/dev/null 2>&1
50         else
51                 msg_not_running rsyncd
52         fi
53         ;;
54   restart|reload|force-restart|force-reload)
55         $0 stop
56         $0 start
57         exit $?
58         ;;
59   status)
60         status rsyncd rsync
61         exit $?
62         ;;
63   *)
64         msg_usage "$0 {start|stop|restart|reload|force-restart|force-reload|status}"
65         exit 3
66 esac
67
68 exit $RETVAL
This page took 0.029149 seconds and 3 git commands to generate.