summaryrefslogtreecommitdiff
path: root/package/squid/files/squid.init
blob: 120d006c710511e8b5176f7530c302c3c50f3d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
#PKG squid
#INIT 70
. /etc/rc.conf

case $1 in
autostop) ;;
autostart)
	test x"${squid:-NO}" = x"NO" && exit 0
	exec sh $0 start
	;;
start)
	if [ ! -f /var/log/squid-cache.log ];then
		touch /var/log/squid-cache.log
		chown squid:squid /var/log/squid-cache.log
	fi
	if [ ! -d /var/squid/cache ];then
		mkdir -p /var/squid/cache
		chown squid:squid /var/squid/cache
		squid -z 
	fi
	squid
	;;
stop)
	squid -k kill
	;;
restart)
	sh $0 stop
	sh $0 start
	;;

*)
	echo "usage: $0 {start | stop | restart}"
	exit 1
esac
exit $?