2004-09-09 12:36:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# squid This shell script takes care of starting and stopping
|
|
|
|
# Squid Internet Object Cache
|
|
|
|
#
|
|
|
|
# chkconfig: - 90 25
|
|
|
|
# description: Squid - Internet Object Cache. Internet object caching is \
|
|
|
|
# a way to store requested Internet objects (i.e., data available \
|
|
|
|
# via the HTTP, FTP, and gopher protocols) on a system closer to the \
|
|
|
|
# requesting site than to the source. Web browsers can then use the \
|
|
|
|
# local Squid cache as a proxy HTTP server, reducing access time as \
|
|
|
|
# well as bandwidth consumption.
|
|
|
|
# pidfile: /var/run/squid.pid
|
|
|
|
# config: /etc/squid/squid.conf
|
|
|
|
|
|
|
|
PATH=/usr/bin:/sbin:/bin:/usr/sbin
|
|
|
|
export PATH
|
|
|
|
|
|
|
|
# Source function library.
|
|
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
|
|
|
|
# Source networking configuration.
|
|
|
|
. /etc/sysconfig/network
|
|
|
|
|
|
|
|
# Check that networking is up.
|
|
|
|
[ ${NETWORKING} = "no" ] && exit 0
|
|
|
|
|
|
|
|
# check if the squid conf file is present
|
|
|
|
[ -f /etc/squid/squid.conf ] || exit 0
|
|
|
|
|
2004-09-09 12:36:20 +00:00
|
|
|
if [ -f /etc/sysconfig/squid ]; then
|
|
|
|
. /etc/sysconfig/squid
|
|
|
|
else
|
|
|
|
SQUID_OPTS="-D"
|
2004-09-09 12:41:01 +00:00
|
|
|
SQUID_PIDFILE_TIMEOUT=20
|
2004-09-09 12:36:20 +00:00
|
|
|
SQUID_SHUTDOWN_TIMEOUT=100
|
|
|
|
fi
|
|
|
|
|
2004-09-09 12:36:11 +00:00
|
|
|
# determine the name of the squid binary
|
|
|
|
[ -f /usr/sbin/squid ] && SQUID=squid
|
|
|
|
[ -z "$SQUID" ] && exit 0
|
|
|
|
|
2004-09-09 12:36:20 +00:00
|
|
|
prog="$SQUID"
|
|
|
|
|
2004-09-09 12:36:11 +00:00
|
|
|
# determine which one is the cache_swap directory
|
|
|
|
CACHE_SWAP=`sed -e 's/#.*//g' /etc/squid/squid.conf | \
|
|
|
|
grep cache_dir | awk '{ print $3 }'`
|
|
|
|
[ -z "$CACHE_SWAP" ] && CACHE_SWAP=/var/spool/squid
|
|
|
|
|
|
|
|
RETVAL=0
|
|
|
|
|
|
|
|
start() {
|
|
|
|
for adir in $CACHE_SWAP; do
|
|
|
|
if [ ! -d $adir/00 ]; then
|
|
|
|
echo -n "init_cache_dir $adir... "
|
|
|
|
$SQUID -z -F 2>/dev/null
|
|
|
|
fi
|
|
|
|
done
|
2004-09-09 12:36:20 +00:00
|
|
|
echo -n $"Starting $prog: "
|
2004-09-09 12:41:01 +00:00
|
|
|
$SQUID $SQUID_OPTS 2> /dev/null
|
2004-09-09 12:36:11 +00:00
|
|
|
RETVAL=$?
|
2004-09-09 12:41:01 +00:00
|
|
|
if [ $RETVAL -eq 0 ]; then
|
|
|
|
timeout=0;
|
|
|
|
while : ; do
|
|
|
|
[ ! -f /var/run/squid.pid ] || break
|
|
|
|
if [ $timeout -ge $SQUID_PIDFILE_TIMEOUT ]; then
|
|
|
|
RETVAL=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
sleep 1 && echo -n "."
|
|
|
|
timeout=$((timeout+1))
|
|
|
|
done
|
|
|
|
fi
|
2004-09-09 12:36:11 +00:00
|
|
|
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/$SQUID
|
2004-09-09 12:36:20 +00:00
|
|
|
[ $RETVAL -eq 0 ] && echo_success
|
|
|
|
[ $RETVAL -ne 0 ] && echo_failure
|
|
|
|
echo
|
2004-09-09 12:36:11 +00:00
|
|
|
return $RETVAL
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2004-09-09 12:36:20 +00:00
|
|
|
echo -n $"Stopping $prog: "
|
|
|
|
$SQUID -k check >/dev/null 2>&1
|
2004-09-09 12:36:11 +00:00
|
|
|
RETVAL=$?
|
|
|
|
if [ $RETVAL -eq 0 ] ; then
|
2004-09-09 12:36:20 +00:00
|
|
|
$SQUID -k shutdown &
|
2004-09-09 12:36:11 +00:00
|
|
|
rm -f /var/lock/subsys/$SQUID
|
2004-09-09 12:36:20 +00:00
|
|
|
timeout=0
|
2004-09-09 12:36:11 +00:00
|
|
|
while : ; do
|
|
|
|
[ -f /var/run/squid.pid ] || break
|
2004-09-09 12:36:20 +00:00
|
|
|
if [ $timeout -ge $SQUID_SHUTDOWN_TIMEOUT ]; then
|
|
|
|
echo
|
|
|
|
return 1
|
|
|
|
fi
|
2004-09-09 12:36:11 +00:00
|
|
|
sleep 2 && echo -n "."
|
2004-09-09 12:36:20 +00:00
|
|
|
timeout=$((timeout+2))
|
2004-09-09 12:36:11 +00:00
|
|
|
done
|
2004-09-09 12:36:20 +00:00
|
|
|
echo_success
|
|
|
|
echo
|
2004-09-09 12:36:11 +00:00
|
|
|
else
|
2004-09-09 12:36:20 +00:00
|
|
|
echo_failure
|
|
|
|
echo
|
2004-09-09 12:36:11 +00:00
|
|
|
fi
|
|
|
|
return $RETVAL
|
|
|
|
}
|
|
|
|
|
|
|
|
reload() {
|
|
|
|
$SQUID $SQUID_OPTS -k reconfigure
|
|
|
|
}
|
|
|
|
|
|
|
|
restart() {
|
|
|
|
stop
|
|
|
|
start
|
|
|
|
}
|
|
|
|
|
|
|
|
condrestart() {
|
|
|
|
[ -e /var/lock/subsys/squid ] && restart || :
|
|
|
|
}
|
|
|
|
|
|
|
|
rhstatus() {
|
|
|
|
status $SQUID
|
|
|
|
$SQUID -k check
|
|
|
|
}
|
|
|
|
|
|
|
|
probe() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
|
|
|
|
stop)
|
|
|
|
stop
|
|
|
|
;;
|
|
|
|
|
|
|
|
reload)
|
|
|
|
reload
|
|
|
|
;;
|
|
|
|
|
|
|
|
restart)
|
|
|
|
restart
|
|
|
|
;;
|
|
|
|
|
|
|
|
condrestart)
|
|
|
|
condrestart
|
|
|
|
;;
|
|
|
|
|
|
|
|
status)
|
|
|
|
rhstatus
|
|
|
|
;;
|
|
|
|
|
|
|
|
probe)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2004-09-09 12:36:20 +00:00
|
|
|
echo $"Usage: $0 {start|stop|status|reload|restart|condrestart}"
|
2004-09-09 12:36:11 +00:00
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit $?
|