diff options
author | David Runge <dave@sleepmap.de> | 2015-04-25 00:15:42 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-04-25 00:15:42 +0200 |
commit | cae71ea147acd1a6a7751ad9c2a0a6e3f7f9e651 (patch) | |
tree | ab63174e04ea4d848aba4bac69d946af804b2223 /scripts | |
parent | c67e1141dedda5108d1330f59038b55ff8829525 (diff) | |
download | uenv-cae71ea147acd1a6a7751ad9c2a0a6e3f7f9e651.tar.gz uenv-cae71ea147acd1a6a7751ad9c2a0a6e3f7f9e651.tar.bz2 uenv-cae71ea147acd1a6a7751ad9c2a0a6e3f7f9e651.tar.xz uenv-cae71ea147acd1a6a7751ad9c2a0a6e3f7f9e651.zip |
scripts/autotunnel: Fixing SERVER_ALIVE_COUNT_MAX
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/autotunnel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/autotunnel b/scripts/autotunnel index 230940d..2a1f17b 100755 --- a/scripts/autotunnel +++ b/scripts/autotunnel @@ -5,7 +5,7 @@ if [ -z "$SERVER_ALIVE_INTERVAL" ];then fi if [ -z "$SERVER_ALIVE_COUNT_MAX" ];then - SERVER_ALIVE_INTERVAL=2 + SERVER_ALIVE_COUNT_MAX=2 fi if [ -z "$MONITORING_PORT" ];then |