diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-07-30 21:24:13 -0700 |
---|---|---|
committer | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-07-30 21:24:13 -0700 |
commit | e3a45bc369e50673f6c5445f0f059f205124ffd2 (patch) | |
tree | b26ac8cd15376caaddd67344d68555f95c9528e8 | |
parent | 902c61950af6b8ea8263a02232bb0b4f59c10e9e (diff) | |
parent | edf628a6b186a6206818c9a1ae2b62b1e97ee972 (diff) | |
download | pfsense-packages-e3a45bc369e50673f6c5445f0f059f205124ffd2.tar.gz pfsense-packages-e3a45bc369e50673f6c5445f0f059f205124ffd2.tar.bz2 pfsense-packages-e3a45bc369e50673f6c5445f0f059f205124ffd2.zip |
Merge pull request #302 from Podilarius/patch-2
Update config/squid-reverse/proxy_monitor.sh
-rw-r--r-- | config/squid-reverse/proxy_monitor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/squid-reverse/proxy_monitor.sh b/config/squid-reverse/proxy_monitor.sh index 5efe8639..edf6b68e 100644 --- a/config/squid-reverse/proxy_monitor.sh +++ b/config/squid-reverse/proxy_monitor.sh @@ -28,7 +28,7 @@ # IS_RUNNING=`ps awx |grep -c "[p]roxy_monitor.sh"` -if [ $IS_RUNNING -gt 0 ]; then +if [ $IS_RUNNING -gt 1 ]; then exit 0 fi |