From: Bill Erickson Date: Tue, 16 Sep 2014 13:58:20 +0000 (-0400) Subject: only perform live tests if LIVETEST is set X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=70393d0addd4ec1cbbd30a5ad85c284d52dc01b2;p=working%2Frandom.git only perform live tests if LIVETEST is set Signed-off-by: Bill Erickson --- diff --git a/installer/wheezy/eg_wheezy_installer.sh b/installer/wheezy/eg_wheezy_installer.sh index 364a2d0aa..d778d771e 100755 --- a/installer/wheezy/eg_wheezy_installer.sh +++ b/installer/wheezy/eg_wheezy_installer.sh @@ -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 }