squid/cache_swap.sh

23 lines
473 B
Bash
Raw Normal View History

2011-10-26 06:49:36 +00:00
#!/bin/bash
if [ -f /etc/sysconfig/squid ]; then
. /etc/sysconfig/squid
fi
SQUID_CONF=${SQUID_CONF:-"/etc/squid/squid.conf"}
CACHE_SWAP=`sed -e 's/#.*//g' $SQUID_CONF | \
grep cache_dir | awk '{ print $3 }'`
init_cache_dirs=0
2011-10-26 06:49:36 +00:00
for adir in $CACHE_SWAP; do
if [ ! -d $adir/00 ]; then
echo -n "init_cache_dir $adir... "
init_cache_dirs=1
2011-10-26 06:49:36 +00:00
fi
done
if [ $init_cache_dirs -ne 0 ]; then
echo ""
squid --foreground -z -f $SQUID_CONF >> /var/log/squid/squid.out 2>&1
fi