]> git.pld-linux.org Git - packages/pound.git/blob - pound.init
- libtool is required to build
[packages/pound.git] / pound.init
1 #!/bin/sh
2 #
3 # pound 
4 #
5 # chkconfig:    345 85 15
6 # description:  reverse-proxy and load-balancer
7 #
8
9 # Source function library
10 . /etc/rc.d/init.d/functions
11
12 # Get network config
13 . /etc/sysconfig/network
14
15 # Get service config
16 [ -f /etc/sysconfig/pound ] && . /etc/sysconfig/pound
17
18 # Check that networking is up.
19 if is_yes "${NETWORKING}"; then
20         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
21                 # nls "ERROR: Networking is down. %s can't be run." pound
22                 msg_network_down pound
23                 exit 1
24         fi
25 else
26         exit 0
27 fi
28
29 RETVAL=0
30 # See how we were called.
31 case "$1" in
32   start)
33         # Check if the service is already running?
34         if [ ! -f /var/lock/subsys/pound ]; then
35                 msg_starting pound
36                 daemon pound -f /etc/pound/pound.cfg
37                 RETVAL=$?
38                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/pound
39         else
40                 msg_already_running pound
41         fi
42         ;;
43   stop)
44         # Stop daemons.
45         if [ -f /var/lock/subsys/pound ]; then
46                 msg_stopping pound
47                 killproc pound
48                 rm -f /var/lock/subsys/pound > /dev/null 2>&1
49         else
50                 msg_not_running pound
51         fi
52         ;;
53   status)
54         status pound
55         exit $?
56         ;;
57   restart|force-reload)
58         $0 stop
59         $0 start
60         exit $?
61         ;;
62   *)
63         msg_usage "$0 {start|stop|restart|force-reload|status}"
64         exit 3
65 esac
66
67 exit $RETVAL
This page took 0.068697 seconds and 3 git commands to generate.