From: garciadeblas Date: Fri, 16 Oct 2020 11:56:38 +0000 (+0000) Subject: full_install_osm.sh: ng-ui as default UI X-Git-Tag: release-v9.0-start~22 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fdevops.git;a=commitdiff_plain;h=ce7cf378c96b295e6172341c2d5df109aef78234 full_install_osm.sh: ng-ui as default UI Change-Id: Iab3b93fdfe7d1f556e2c0777c8a84e0a6a83384f Signed-off-by: garciadeblas --- diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index fb323baa..d2b08db4 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -1538,7 +1538,7 @@ INSTALL_NOLXD="" INSTALL_NODOCKER="" INSTALL_NOJUJU="" KUBERNETES="" -NGUI="" +NGUI="y" INSTALL_K8S_MONITOR="" INSTALL_NOHOSTCLIENT="" SESSION_ID=`date +%s` @@ -1592,8 +1592,8 @@ while getopts ":b:r:c:n:k:u:R:D:o:O:m:N:H:S:s:w:t:U:P:A:l:L:K:-: hy" o; do usage && exit 1 ;; n) - [ "${OPTARG}" == "lwui" ] && continue - [ "${OPTARG}" == "ngui" ] && NGUI="y" && continue + [ "${OPTARG}" == "lwui" ] && NGUI="" && continue + [ "${OPTARG}" == "ngui" ] && continue echo -e "Invalid argument for -n : ' $OPTARG'\n" >&2 usage && exit 1 ;;