#!/bin/sh
#
-# $Id: RunAccel.in,v 1.4 1996/07/09 03:41:15 wessels Exp $
+# $Id: RunAccel.in,v 1.5 1999/01/29 18:19:45 wessels Exp $
# enable HTTP requests on port 80
port="-a 80"
while : ; do
echo "Running: squid $port -s $conf >> $logdir/squid.out 2>&1"
start=`date '+%d%H%M%S'`
- squid $port -s $conf >> $logdir/squid.out 2>&1
+ squid -N $port -s $conf >> $logdir/squid.out 2>&1
stop=`date '+%d%H%M%S'`
t=`expr $stop - $start`
if test 0 -le $t -a $t -lt 5 ; then
#!/bin/sh
#
-# $Id: RunCache.in,v 1.8 1998/08/04 20:59:32 wessels Exp $
+# $Id: RunCache.in,v 1.9 1999/01/29 18:19:46 wessels Exp $
prefix=@prefix@
exec_prefix=@exec_prefix@
echo "Running: squid -sY $conf >> $logdir/squid.out 2>&1"
echo "Startup: `date`" >> $logdir/squid.out
start=`date '+%d%H%M%S'`
- squid -sY $conf >> $logdir/squid.out 2>&1
+ squid -NsY $conf >> $logdir/squid.out 2>&1
stop=`date '+%d%H%M%S'`
t=`expr $stop - $start`
if test 0 -le $t -a $t -lt 5 ; then