From 8ab44ca0153de9058934021b1bdcfc2d0dac3efe Mon Sep 17 00:00:00 2001 From: "aravind.est" Date: Fri, 1 Aug 2025 15:49:30 +0100 Subject: [PATCH] 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 --- smo-install/scripts/layer-2/2-install-oran.sh | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.16.6