blob: a904ce29d673a251c41b8c1f69bacf77125ae876 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
#
# $NetBSD: squid.sh,v 1.3 1998/12/06 12:42:00 tron Exp $
#
if [ -x @PREFIX@/sbin/RunCache -a -f /etc/squid.conf ];
then
@PREFIX@/sbin/RunCache >/dev/null 2>&1 &
echo -n ' squid'
fi
exit 0
|