diff options
author | Phil Davis <phil.davis@world.inf.org> | 2012-07-22 15:57:57 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@world.inf.org> | 2012-07-22 15:57:57 +0545 |
commit | 1a1124da89e8832cd4fb7ce0ba01d06d96971362 (patch) | |
tree | 6426a9a3ab719c93ab0a02d3a1a279ac3935b113 /config | |
parent | 2416bcb81f4833fd0d1348d96e0e31ab85d7f247 (diff) | |
download | pfsense-packages-1a1124da89e8832cd4fb7ce0ba01d06d96971362.tar.gz pfsense-packages-1a1124da89e8832cd4fb7ce0ba01d06d96971362.tar.bz2 pfsense-packages-1a1124da89e8832cd4fb7ce0ba01d06d96971362.zip |
Fix grep for squid process since "-D" was obsolete.
Diffstat (limited to 'config')
-rw-r--r-- | config/squid-reverse/proxy_monitor.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/squid-reverse/proxy_monitor.sh b/config/squid-reverse/proxy_monitor.sh index fa5a87bb..a6d58e9b 100644 --- a/config/squid-reverse/proxy_monitor.sh +++ b/config/squid-reverse/proxy_monitor.sh @@ -41,7 +41,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 -D"|awk '{print $2}'| wc -l | awk '{ print $1 }'` + NUM_PROCS=`ps auxw | grep "[s]quid -f"|awk '{print $2}'| wc -l | awk '{ print $1 }'` if [ $NUM_PROCS -lt 1 ]; then # squid is down echo "Squid has exited. Reconfiguring filter." | \ @@ -54,7 +54,7 @@ while [ /bin/true ]; do touch /var/run/squid_alarm fi fi - NUM_PROCS=`ps auxw | grep "[s]quid -D"|awk '{print $2}'| wc -l | awk '{ print $1 }'` + NUM_PROCS=`ps auxw | grep "[s]quid -f"|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." | \ |