diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-07-30 21:24:26 -0700 |
---|---|---|
committer | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-07-30 21:24:26 -0700 |
commit | f972a007dda3df2a86c586e34b5fcf084337b6f4 (patch) | |
tree | 341a621cb98d53426893157b099a3d0bade64b3b /config | |
parent | e3a45bc369e50673f6c5445f0f059f205124ffd2 (diff) | |
parent | e0e7173fd20b9dd7932010ecf7e9dbf64268ddca (diff) | |
download | pfsense-packages-f972a007dda3df2a86c586e34b5fcf084337b6f4.tar.gz pfsense-packages-f972a007dda3df2a86c586e34b5fcf084337b6f4.tar.bz2 pfsense-packages-f972a007dda3df2a86c586e34b5fcf084337b6f4.zip |
Merge pull request #303 from Podilarius/patch-3
Update config/squid3/proxy_monitor.sh
Diffstat (limited to 'config')
-rw-r--r-- | config/squid3/proxy_monitor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/squid3/proxy_monitor.sh b/config/squid3/proxy_monitor.sh index 41c16129..470c4d94 100644 --- a/config/squid3/proxy_monitor.sh +++ b/config/squid3/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 |