]> git.pld-linux.org Git - packages/squid.git/blob - squid.init
- note of endless loop
[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 25
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 # Sanity check
55 [ -f /etc/squid/squid.conf ] || exit 0
56
57 RETVAL=0
58 # See how we were called.
59 case "$1" in
60   start)
61         # Check if the service is already running?
62         if [ ! -f /var/lock/subsys/squid ]; then
63                 msg_starting Squid
64                 ulimit -n 8192
65                 daemon $SERVICE_RUN_NICE_LEVEL squid $SQUID_OPTS
66                 RETVAL=$?
67                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/squid
68         else
69                 msg_already_running Squid
70         fi
71         ;;
72   stop)
73         if [ -f /var/lock/subsys/squid ]; then
74                 # Stop daemons.
75                 msg_stopping Squid
76                 if [ -f /var/run/squid.pid ]; then
77                         PID=$(filter_chroot `cat /var/run/squid.pid`)
78                         if [ -z "$PID" ]; then
79                                 PID=0
80                         fi
81                 else
82                         PID=0
83                 fi
84                 killproc squid
85                 RETVAL=$?
86                 if [ ! $PID -eq 0 ]; then
87                         show "Waiting for Squid to stop"
88                         busy
89                         # FIXME: DEADLOOP!
90                         # redirect_program could stay lingering around and this loop is never breaken
91                         while ps -U squid -o user | grep -q ^squid
92                         do
93                                 sleep 1
94                         done
95                         ok
96                 fi
97                 rm -f /var/lock/subsys/squid >/dev/null 2>&1
98         else
99                 msg_not_running Squid
100         fi
101         ;;
102   restart)
103         $0 stop
104         $0 start
105         exit $?
106         ;;
107   reload|force-reload)
108         if [ -f /var/lock/subsys/squid ]; then
109                 msg_reloading Squid
110                 busy
111                 squid -k reconfigure
112                 RETVAL=$?
113                 [ $RETVAL -ne 0 ] && RETVAL=7
114                 [ $RETVAL -eq 0 ] && ok || fail
115         else
116                 msg_not_running Squid >&2
117                 exit 7
118         fi
119         ;;
120   status)
121         status squid
122         exit $?
123         ;;
124   init)
125         nls "Initializing %s" squid
126         squid -z
127         ;;
128   *)
129         msg_usage "$0 {start|stop|init|restart|reload|force-reload|status}"
130         exit 3
131 esac
132
133 exit $RETVAL
This page took 0.042641 seconds and 4 git commands to generate.