03b9a7
#!/bin/bash
03b9a7
if [ -f /etc/sysconfig/squid ]; then
03b9a7
	. /etc/sysconfig/squid
03b9a7
fi
03b9a7
03b9a7
SQUID_CONF=${SQUID_CONF:-"/etc/squid/squid.conf"}
03b9a7
03b9a7
CACHE_SWAP=`sed -e 's/#.*//g' $SQUID_CONF | \
03b9a7
	grep cache_dir | awk '{ print $3 }'`
03b9a7
03b9a7
for adir in $CACHE_SWAP; do
03b9a7
	if [ ! -d $adir/00 ]; then
03b9a7
		echo -n "init_cache_dir $adir... "
03b9a7
		squid -N -z -F -f $SQUID_CONF >> /var/log/squid/squid.out 2>&1
03b9a7
	fi
03b9a7
done