X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Finstall_osm.sh;h=33bf77706e78019f43dad624d8ca44d8bc29681e;hb=4e7b2a2cb74cc27e9582226cd6d402a8bf528947;hp=bf1c5683dc70c2972508c43b3ae9d6f0415bb2b6;hpb=51d704a393655bf1458daa08f5ba998b217ca6bb;p=osm%2Fdevops.git diff --git a/installers/install_osm.sh b/installers/install_osm.sh index bf1c5683..33bf7770 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -13,9 +13,9 @@ # limitations under the License. # REPOSITORY_BASE=https://osm-download.etsi.org/repository/osm/debian -RELEASE=ReleaseNINE +RELEASE=ReleaseTEN REPOSITORY=stable -DOCKER_TAG=9 +DOCKER_TAG=10 DEVOPS_PATH=/usr/share/osm-devops function usage(){ @@ -101,8 +101,12 @@ add_repo() { || sudo apt-get install -y $need_packages_lw \ || ! echo "failed to install $need_packages_lw" \ || exit 1 - wget -qO - $REPOSITORY_BASE/$RELEASE/OSM%20ETSI%20Release%20Key.gpg | sudo apt-key add - - sudo DEBIAN_FRONTEND=noninteractive add-apt-repository -y "$1" && sudo DEBIAN_FRONTEND=noninteractive apt-get update + wget -q -O OSM-ETSI-Release-key.gpg "$REPOSITORY_BASE/$RELEASE/OSM%20ETSI%20Release%20Key.gpg" + sudo APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add OSM-ETSI-Release-key.gpg \ + || ! echo -e "Could not add GPG key $REPOSITORY_BASE/$RELEASE/OSM%20ETSI%20Release%20Key.gpg" \ + || exit 1 + sudo DEBIAN_FRONTEND=noninteractive add-apt-repository -y "$1" + sudo DEBIAN_FRONTEND=noninteractive apt-get -y update return 0 fi