only perform live tests if LIVETEST is set
authorBill Erickson <berickxx@gmail.com>
Tue, 16 Sep 2014 13:58:20 +0000 (09:58 -0400)
committerBill Erickson <berickxx@gmail.com>
Tue, 16 Sep 2014 13:58:20 +0000 (09:58 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
installer/wheezy/eg_wheezy_installer.sh

index 364a2d0..d778d77 100755 (executable)
@@ -48,7 +48,9 @@ function my_init {
     configure_apache
     if [ $AUTOSTART ]; then
         start_evergreen
-        test_evergreen_live
+        if [ $LIVETEST ]; then
+            test_evergreen_live
+        fi
     fi
 }