]> git.pld-linux.org Git - packages/pound.git/blame - pound.init
- applied in 2.4.4
[packages/pound.git] / pound.init
CommitLineData
59f6c21a 1#!/bin/sh
2#
7dbb2b59 3# pound
59f6c21a 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
f33820c6
ER
15# List of instances to start.
16POUND_INSTANCES="pound"
17
59f6c21a 18# Get service config
19[ -f /etc/sysconfig/pound ] && . /etc/sysconfig/pound
20
21# Check that networking is up.
22if is_yes "${NETWORKING}"; then
1a0ae1a4 23 if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
74738d13 24 msg_network_down pound
25 exit 1
26 fi
59f6c21a 27else
74738d13 28 exit 0
59f6c21a 29fi
30
e23f2808
ER
31configtest() {
32 local instance="$1"
33 pound -c -f /etc/pound/$instance.cfg > /dev/null
34}
35
36
19b8f25f
ER
37# check if the $1 instance is up
38is_up() {
39 local instance="$1"
40 local pidfile=/var/run/pound/$instance.pid
41 [ -f $pidfile ] || return 1
42 local pid=$(cat $pidfile)
43 kill -0 $pid 2>/dev/null
44 return $?
45}
46
e23f2808
ER
47# check if any of the instances are up
48any_up() {
49 local ret=1 instance pidfile
50
51 for pidfile in /var/run/pound/*.pid; do
52 [ -f "$pidfile" ] || continue
53 instance=${pidfile#/var/run/pound/}
54 instance=${instance%.pid}
55 is_up $instance || continue
56 ret=0
57 done
58
59 return $ret
60}
61
62# check if all of the instances are up
63all_up() {
64 local ret=0 instance pidfile
65
66 for pidfile in /var/run/pound/*.pid; do
67 [ -f "$pidfile" ] || continue
68 instance=${pidfile#/var/run/pound/}
69 instance=${instance%.pid}
70 is_up $instance && continue
71 ret=1
72 done
73
74 return $ret
75}
76
50de9853 77start() {
e23f2808
ER
78 local ret started=0 found=0 instance
79
19b8f25f 80 # Check if the service is already running?
e23f2808
ER
81 if ! all_up; then
82 msg_starting "Pound"; started
19b8f25f 83 for instance in $POUND_INSTANCES; do
e23f2808
ER
84 show "Starting Pound instance %s" "$instance"
85 if is_up $instance; then
86 started
87 continue
88 fi
89
4ee2ad17
ER
90 PIDFILE=/var/run/pound/$instance.pid
91 start-stop-daemon --start \
e23f2808
ER
92 --exec /usr/sbin/pound \
93 --pidfile $PIDFILE -- -v -f /etc/pound/$instance.cfg -p $PIDFILE
19b8f25f 94 ret=$?
e23f2808 95
4ee2ad17
ER
96 if [ $ret -eq 0 ]; then
97 ok
5208430f
ER
98 RETVAL=$ret
99 started=1
e23f2808 100 found=1
4ee2ad17 101 else
f4b0626e 102 fail
5208430f 103 fi
19b8f25f 104 done
19b8f25f 105
e23f2808 106 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/pound
19b8f25f
ER
107 else
108 msg_already_running "Pound"
109 fi
50de9853
ER
110}
111
112stop() {
e23f2808 113 local ret instance
74738d13 114 # Stop daemons.
e23f2808 115 if any_up; then
44ac793d 116 msg_stopping "Pound"; started
19b8f25f
ER
117 for instance in $POUND_INSTANCES; do
118 is_up $instance || continue
e23f2808 119 show "Stopping Pound instance %s" "$instance"; busy
19b8f25f
ER
120 killproc --pidfile pound/$instance.pid pound
121 ret=$?
122 done
e23f2808 123 rm -f /var/lock/subsys/pound > /dev/null 2>&1
19b8f25f
ER
124 else
125 msg_not_running "Pound"
126 fi
50de9853
ER
127}
128
194b939d 129restart() {
e23f2808
ER
130 local instance
131
86406927
ER
132 if any_up; then
133 # make up list of configured and up instances
134 local list
135 show "Checking configuration"; busy
136 for instance in $POUND_INSTANCES; do
137 # skip ones whose config fails
138 configtest $instance || continue
139 list="$list $instance"
140 done
141 ok
142
143 POUND_INSTANCES=$list
e23f2808 144
86406927 145 fi
194b939d
ER
146
147 stop
148 start
149}
150
901f3d9e
ER
151condrestart() {
152 if [ -f /var/lock/subsys/pound ]; then
153 stop
154 start
155 else
156 msg_not_running "Pound"
157 RETVAL=$1
158 fi
159}
19b8f25f 160
e23f2808 161pound_status() {
901f3d9e 162 local stat=1 pidfile instance
e23f2808 163
19b8f25f
ER
164 nls "Configured Pound instances:"
165 echo " $POUND_INSTANCES"
166 nls "Currently active Pound instances:"
19b8f25f
ER
167 for pidfile in /var/run/pound/*.pid; do
168 [ -f "$pidfile" ] || continue
169 instance=${pidfile#/var/run/pound/}
170 instance=${instance%.pid}
171 is_up $instance && echo -n " $instance($(cat $pidfile))"
172 stat=0
173 done
174 echo ""
175 exit $stat
e23f2808
ER
176}
177
901f3d9e
ER
178if [ "$1" != status -a "$2" ]; then
179 POUND_INSTANCES="$2"
180fi
181
e23f2808
ER
182RETVAL=0
183# See how we were called.
184case "$1" in
185 start)
186 start
187 ;;
188 stop)
189 stop
190 ;;
901f3d9e 191 restart)
194b939d 192 restart
59f6c21a 193 ;;
901f3d9e
ER
194 try-restart)
195 condrestart 0
196 ;;
197 force-reload)
198 condrestart 7
199 ;;
0b650d78
ER
200 flush-logs)
201 if [ -f /var/lock/subsys/pound ]; then
202 for instance in $POUND_INSTANCES; do
203 show "Rotating Pound logs for %s instance" $instance
204 killproc --pidfile /var/run/pound/$instance.pid pound -USR1
205 ret=$?
206 if [ $ret != 0 ]; then
207 RETVAL=$ret
208 fi
209 done
210 else
211 msg_not_running "Pound"
212 RETVAL=7
213 fi
214 ;;
e890afb0
ER
215 status)
216 pound_status
217 ;;
59f6c21a 218 *)
901f3d9e 219 msg_usage "$0 {start|stop|restart|try-restart|force-reload|flush-logs|status} [INSTANCE NAMES]"
5917fcaf 220 exit 3
59f6c21a 221esac
222
223exit $RETVAL
This page took 0.152986 seconds and 4 git commands to generate.