summaryrefslogtreecommitdiffstats
path: root/squid/entrypoint.sh
blob: 560d20629abb06e9cd05668831212f7260997197 (plain)
1
2
3
4
5
6
7
#!/bin/bash

# Create cache FS
if [ ! -e /var/spool/squid/00 ];then
	squid -z || exit $?
fi
/usr/sbin/squid -NYC -f /etc/squid/squid.conf || exit $?