X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Finstall_osm.sh;h=f39eb4106d1a4e84af1bf76340e6458e967e189e;hb=7942e2818b950a5e17bf97039aaea9afce58967e;hp=8f4827222e98bf57ca69707e6f780c9aec579300;hpb=15f4f2295c6807d857f9b61ce291119a0a46d11f;p=osm%2Fdevops.git diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 8f482722..f39eb410 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -19,6 +19,10 @@ function usage(){ echo -e " OPTIONS" echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules" echo -e " --source: install OSM from source code using the latest stable tag" + echo -e " -r : use specified repository name for osm packages" + echo -e " -R : use specified release for osm packages" + echo -e " -u : use specified repository url for osm packages" + echo -e " -k : use specified repository public key url" echo -e " -b : install OSM from source code using a specific branch (master, v2.0, ...) or tag" echo -e " -b master (main dev branch)" echo -e " -b v2.0 (v2.0 branch)" @@ -250,7 +254,7 @@ COMMIT_ID="" ASSUME_YES="" INSTALL_FROM_SOURCE="" -while getopts ":hy-:b:" o; do +while getopts ":hy-:b:r:k:u:R:" o; do case "${o}" in h) usage && exit 0 @@ -258,6 +262,18 @@ while getopts ":hy-:b:" o; do b) COMMIT_ID=${OPTARG} ;; + r) + REPOSITORY="-r ${OPTARG}" + ;; + R) + RELEASE="-R ${OPTARG}" + ;; + k) + REPOSITORY_KEY="-k ${OPTARG}" + ;; + u) + REPOSITORY_BASE="-u ${OPTARG}" + ;; -) [ "${OPTARG}" == "help" ] && usage && exit 0 [ "${OPTARG}" == "source" ] && INSTALL_FROM_SOURCE="y" && continue @@ -355,10 +371,10 @@ wget -q -O- https://osm-download.etsi.org/ftp/osm-2.0-two/README.txt &> /dev/nul if [ -z "$INSTALL_FROM_SOURCE" ]; then echo -e "\nCreating the containers and installing from binaries ..." - $OSM_DEVOPS/jenkins/host/install RO || FATAL "RO install failed" + $OSM_DEVOPS/jenkins/host/install RO $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "RO install failed" $OSM_DEVOPS/jenkins/host/start_build VCA || FATAL "VCA install failed" - $OSM_DEVOPS/jenkins/host/install SO || FATAL "SO install failed" - $OSM_DEVOPS/jenkins/host/install UI || FATAL "UI install failed" + $OSM_DEVOPS/jenkins/host/install SO $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "SO install failed" + $OSM_DEVOPS/jenkins/host/install UI $REPOSITORY $RELEASE $REPOSITORY_KEY $REPOSITORY_BASE || FATAL "UI install failed" else #install from source echo -e "\nCreating the containers and building from source ..." $OSM_DEVOPS/jenkins/host/start_build RO --notest checkout $COMMIT_ID || FATAL "RO container build failed (refspec: '$COMMIT_ID')"