aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/squid/sqpmon.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/squid/sqpmon.sh b/config/squid/sqpmon.sh
index e12acf6f..6053e8ef 100644
--- a/config/squid/sqpmon.sh
+++ b/config/squid/sqpmon.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# $Id$ */
#
-# sqpmon.sh
+# sqpmon.sh
# Copyright (C) 2006 Scott Ullrich
# All rights reserved.
#
@@ -45,7 +45,7 @@ sleep 5
# Squid monitor 1.2
while [ /bin/true ]; do
if [ ! -f /var/run/squid_alarm ]; then
- NUM_PROCS=`ps auxw | grep "[s]quid -f"|awk '{print $2}'| wc -l | awk '{ print $1 }'`
+ NUM_PROCS=`ps auxw | grep "[s]quid -D"|awk '{print $2}'| wc -l | awk '{ print $1 }'`
if [ $NUM_PROCS -lt 1 ]; then
# squid is down
echo "Squid has exited. Reconfiguring filter." | \
@@ -58,7 +58,7 @@ while [ /bin/true ]; do
touch /var/run/squid_alarm
fi
fi
- NUM_PROCS=`ps auxw | grep "[s]quid -f"|awk '{print $2}'| wc -l | awk '{ print $1 }'`
+ NUM_PROCS=`ps auxw | grep "[s]quid -D"|awk '{print $2}'| wc -l | awk '{ print $1 }'`
if [ $NUM_PROCS -gt 0 ]; then
if [ -f /var/run/squid_alarm ]; then
echo "Squid has resumed. Reconfiguring filter." | \