From: Jeremy Mordkoff Date: Mon, 13 Mar 2017 18:50:42 +0000 (-0400) Subject: backport platform install fix from master X-Git-Tag: v1.1.0~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=d157a7b8d9fc18fc3576583afd8926adc773dde4;hp=-c;p=osm%2FSO.git backport platform install fix from master --- d157a7b8d9fc18fc3576583afd8926adc773dde4 diff --git a/BUILD.sh b/BUILD.sh index 788f9d14..b4721562 100755 --- a/BUILD.sh +++ b/BUILD.sh @@ -180,14 +180,22 @@ fi if [[ $PLATFORM == ub16 ]]; then # install the RIFT platform code: - sudo apt-get install -y --allow-downgrades rw.toolchain-rwbase=${PLATFORM_VERSION} \ - rw.toolchain-rwtoolchain=${PLATFORM_VERSION} \ - rw.core.mgmt-mgmt=${PLATFORM_VERSION} \ - rw.core.util-util=${PLATFORM_VERSION} \ - rw.core.rwvx-rwvx=${PLATFORM_VERSION} \ - rw.core.rwvx-rwdts=${PLATFORM_VERSION} \ - rw.automation.core-RWAUTO=${PLATFORM_VERSION} \ - rw.core.rwvx-rwha-1.0=${PLATFORM_VERSION} + # remove these packages since some files moved from one to the other, and one was obsoleted + # ignore failures + + PACKAGES="rw.toolchain-rwbase rw.toolchain-rwtoolchain rw.core.mgmt-mgmt rw.core.util-util \ + rw.core.rwvx-rwvx rw.core.rwvx-rwdts rw.automation.core-RWAUTO rw.core.rwvx-rwha-1.0" + # this package is obsolete. + OLD_PACKAGES="" + for package in $PACKAGES $OLD_PACKAGES; do + sudo apt remove -y $package || true + done + + packages="" + for package in $PACKAGES; do + packages="$packages $package=${PLATFORM_VERSION}" + done + sudo apt-get install -y --allow-downgrades $packages sudo apt-get install python-cinderclient