From: garciadeblas Date: Thu, 19 Apr 2018 09:18:06 +0000 (+0200) Subject: Updating osmclient to use REPOSITORY variable X-Git-Tag: v3.1.0~14 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=a9ef0991a493ab3d0114ebbd90fe01480dec075f;p=osm%2Fdevops.git Updating osmclient to use REPOSITORY variable Change-Id: If13e35ff04c03c7e5d99a7478a4a1a9dcd98d2ae Signed-off-by: garciadeblas --- diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 2c4361fd..d63e95ac 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -413,7 +413,7 @@ function launch_container_from_lxd(){ function install_osmclient(){ CLIENT_RELEASE=${RELEASE#"-R "} CLIENT_REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg" - CLIENT_REPOSITORY="stable" + CLIENT_REPOSITORY=${REPOSITORY#"-r "} [ -z "$REPOSITORY_BASE" ] && REPOSITORY_BASE="-u https://osm-download.etsi.org/repository/osm/debian" CLIENT_REPOSITORY_BASE=${REPOSITORY_BASE#"-u "} key_location=$CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE/$CLIENT_REPOSITORY_KEY @@ -639,6 +639,7 @@ COMMIT_ID="" ASSUME_YES="" INSTALL_FROM_SOURCE="" RELEASE="-R ReleaseTHREE" +REPOSITORY="-r stable" INSTALL_VIMEMU="" INSTALL_FROM_LXDIMAGES="" LXD_REPOSITORY_BASE="https://osm-download.etsi.org/repository/osm/lxd"