From: aravind.est Date: Fri, 1 Aug 2025 14:49:30 +0000 (+0100) Subject: Fix default installation mode when the flavour mentioned as "default" X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=8ab44ca0153de9058934021b1bdcfc2d0dac3efe;p=it%2Fdep.git Fix default installation mode when the flavour mentioned as "default" When there is no flavour supplied, the script should default to "default" mode. If the flavour set to "default", it should print a message indicating that the default flavour is being used and should not ask for the *-flavour-config files. Issue-ID: INT-170 Change-Id: I678c8b38e247d5ce65e3ed20caf8c42080b166c9 Signed-off-by: aravind.est --- diff --git a/smo-install/scripts/layer-2/2-install-oran.sh b/smo-install/scripts/layer-2/2-install-oran.sh index 29686dfa..98779dbf 100755 --- a/smo-install/scripts/layer-2/2-install-oran.sh +++ b/smo-install/scripts/layer-2/2-install-oran.sh @@ -44,6 +44,9 @@ if [ -z "$1" ] then echo "No helm override flavour supplied, going to default" FLAVOUR="default" + elif [ "$1" = "default" ] + then + echo "Using helm override flavour: $FLAVOUR" else echo "Using helm override flavour: $FLAVOUR" if [ -f "../../helm-override/$FLAVOUR/onap-flavour-config.yaml" ]; then