]> git.pld-linux.org Git - packages/squid.git/blob - squid.init
- check for squid.pid not whole process tree
[packages/squid.git] / squid.init
1 #!/bin/sh
2 #
3 # squid         This shell script takes care of starting and stopping
4 #               Squid Internet Object Cache
5 #
6 # chkconfig:    345 90 10
7 #
8 # description:  Squid - Internet Object Cache. Internet object caching is \
9 #               a way to store requested Internet objects (i.e., data \
10 #               available via the HTTP, FTP, and gopher protocols) on a \
11 #               system closer to the requesting site than to the source. \
12 #               Web browsers can then use the local Squid cache as a proxy \
13 #               HTTP server, reducing access time as well as bandwidth \
14 #               consumption.
15 # description(es): Squid - Cache de Objetos de Internet.  Cache de objetos \
16 #               es una manera de almacenar objetos Internet (i.e. Datos \
17 #               disponibles vía protocolos HTTP, FTP y gopher) en un \
18 #               sistema más próximo al site solicitador que el sistema \
19 #               original en internet.  Navegadores www pueden usar el \
20 #               cache squid local como un servidor proxy HTTP, reduciendo \
21 #               tanto el tiempo de acceso así como el consumo de banda de \
22 #               comunicación.
23 # description(pt_BR): Squid - Cache de Objetos da Internet. Cache de objetos \
24 #               é uma maneira de armazenar objetos Internet (i.e. dados \
25 #               disponíveis via protocolos HTTP, FTP e gopher) em um \
26 #               sistema mais próximo ao site requisitante do que o sistema \
27 #               original na internet. Navegadores www podem usar o cache \
28 #               squid local como um servidor proxy HTTP, reduzindo o tempo \
29 #               de acesso bem como o consumo de banda de comunicação.
30 #
31 # pidfile:      /var/run/squid.pid
32 # config:       /etc/squid/squid.conf
33
34
35 # Source function library
36 . /etc/rc.d/init.d/functions
37
38 # Get network config
39 . /etc/sysconfig/network
40
41 # Get service config
42 [ -f /etc/sysconfig/squid ] && . /etc/sysconfig/squid
43
44 # Check that networking is up.
45 if is_yes "${NETWORKING}"; then
46         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status -a "$1" != init ]; then
47                 msg_network_down Squid
48                 exit 1
49         fi
50 else
51         exit 0
52 fi
53
54 # Set default shutdown timeout if it is not set in service config
55 SQUID_SHUTDOWN_TIMEOUT=${SQUID_SHUTDOWN_TIMEOUT:-60}
56
57 # determine which one is the cache_swap directory
58 CACHE_SWAP=$(awk '/^cache_dir/{print $3}' /etc/squid/squid.conf)
59 [ -z "$CACHE_SWAP" ] && CACHE_SWAP=/var/cache/squid
60
61 check_cache_dirs() {
62         local need_init=0 dir
63         for dir in $CACHE_SWAP; do
64                 if [ ! -d $dir/00 ]; then
65                         need_init=1
66                 fi
67         done
68         if [ $need_init = 1 ]; then
69                 show "Initializing Squid cache dirs"
70                 squid -z -F -D >> /var/log/squid/squid.out 2>&1 && ok || fail
71         fi
72 }
73
74 start() {
75         # Check if the service is already running?
76         if [ ! -f /var/lock/subsys/squid ]; then
77                 check_cache_dirs
78                 msg_starting Squid
79                 daemon squid $SQUID_OPTS
80                 RETVAL=$?
81                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/squid
82         else
83                 msg_already_running Squid
84         fi
85 }
86
87 stop() {
88         if [ -f /var/lock/subsys/squid ]; then
89                 # Stop daemons.
90                 msg_stopping Squid
91                 killproc squid
92
93                 if [ -f /var/run/squid.pid ]; then
94                         show "Waiting for Squid to stop"
95                         busy
96
97                         timeout=0
98                         while : ; do
99                                 [ ! -f /var/run/squid.pid ] || break
100                                 if [ $timeout -ge $SQUID_SHUTDOWN_TIMEOUT ]; then
101                                         RETVAL=1
102                                         break
103                                 fi
104                                 sleep 1 && echo -n "."
105                                 timeout=$((timeout+1))
106                         done
107                         ok
108                 fi
109
110                 rm -f /var/lock/subsys/squid >/dev/null 2>&1
111         else
112                 msg_not_running Squid
113         fi
114 }
115
116 # check that squid config is ok
117 # NOTE: needs running squid
118 configtest() {
119         show "Checking squid config syntax"
120         squid -k check >> /var/log/squid/squid.out 2>&1
121         RETVAL=$?
122         [ $RETVAL = 0 ] && ok || fail
123 }
124
125 reload() {
126         if [ -f /var/lock/subsys/squid ]; then
127                 msg_reloading Squid
128                 busy
129                 squid -k reconfigure
130                 RETVAL=$?
131                 [ $RETVAL -ne 0 ] && RETVAL=7
132                 [ $RETVAL -eq 0 ] && ok || fail
133         else
134                 msg_not_running Squid
135                 exit 7
136         fi
137 }
138
139 restart() {
140         # if service is up, do configtest
141         if [ -f /var/lock/subsys/squid ]; then
142                 configtest
143                 if [ $RETVAL != 0 ]; then
144                         exit 1
145                 fi
146         fi
147         stop
148         start
149 }
150
151 RETVAL=0
152 # See how we were called.
153 case "$1" in
154   start)
155         start
156         ;;
157   stop)
158         stop
159         ;;
160   restart|force-reload)
161         restart
162         ;;
163   reload)
164         reload
165         ;;
166   status)
167         status squid
168         exit $?
169         ;;
170   init)
171         show "Initializing Squid"; echo
172         check_cache_dirs
173         ;;
174   *)
175         msg_usage "$0 {start|stop|init|restart|reload|force-reload|status}"
176         exit 3
177 esac
178
179 exit $RETVAL
This page took 0.071997 seconds and 4 git commands to generate.