]> git.pld-linux.org Git - packages/squid.git/blob - squid.init
- updated to 2.5.STABLE13
[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 # Set default shutdown timeout if it is not set in service config
45 SQUID_SHUTDOWN_TIMEOUT=${SQUID_SHUTDOWN_TIMEOUT:-60}
46
47 # Check that networking is up.
48 if is_yes "${NETWORKING}"; then
49         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status -a "$1" != init ]; then
50                 msg_network_down Squid
51                 exit 1
52         fi
53 else
54         exit 0
55 fi
56
57 # Sanity check
58 [ -f /etc/squid/squid.conf ] || exit 0
59
60 RETVAL=0
61 # See how we were called.
62 case "$1" in
63   start)
64         # Check if the service is already running?
65         if [ ! -f /var/lock/subsys/squid ]; then
66                 msg_starting Squid
67                 ulimit -n 8192
68                 daemon $SERVICE_RUN_NICE_LEVEL squid $SQUID_OPTS
69                 RETVAL=$?
70                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/squid
71         else
72                 msg_already_running Squid
73         fi
74         ;;
75   stop)
76         if [ -f /var/lock/subsys/squid ]; then
77                 # Stop daemons.
78                 msg_stopping Squid
79                 if [ -f /var/run/squid.pid ]; then
80                         PID="`cat /var/run/squid.pid`"
81                         if [ -z "$PID" ]; then
82                                 PID=0
83                         fi
84                 else
85                         PID=0
86                 fi
87                 killproc squid
88                 RETVAL=$?
89                 if [ ! $PID -eq 0 ]; then
90                         show "Waiting for Squid to stop"
91                         busy
92                         timeout=0
93                         while ps -U squid -o user | grep -q ^squid
94                         do
95                                 if [ $timeout -ge $SQUID_SHUTDOWN_TIMEOUT ]; then
96                                     break
97                                 fi
98                                 sleep 1
99                                 timeout=$((timeout+1))
100                         done
101                         ok
102                 fi
103                 rm -f /var/lock/subsys/squid >/dev/null 2>&1
104         else
105                 msg_not_running Squid
106         fi
107         ;;
108   restart)
109         $0 stop
110         $0 start
111         exit $?
112         ;;
113   reload|force-reload)
114         if [ -f /var/lock/subsys/squid ]; then
115                 msg_reloading Squid
116                 busy
117                 squid -k reconfigure
118                 RETVAL=$?
119                 [ $RETVAL -ne 0 ] && RETVAL=7
120                 [ $RETVAL -eq 0 ] && ok || fail
121         else
122                 msg_not_running Squid >&2
123                 exit 7
124         fi
125         ;;
126   status)
127         status squid
128         exit $?
129         ;;
130   init)
131         nls "Initializing %s" squid
132         squid -z
133         ;;
134   *)
135         msg_usage "$0 {start|stop|init|restart|reload|force-reload|status}"
136         exit 3
137 esac
138
139 exit $RETVAL
This page took 0.032696 seconds and 3 git commands to generate.