diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-01-04 20:18:25 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-01-24 13:13:59 +0100 |
commit | 9813b4e4047e1226198bf215d89417a2dfc7f664 (patch) | |
tree | 7160aab34c664b78da38d63745cc4c0c5b532be3 /packaging/deb/common/prepare.sh | |
parent | 153c2954d71c94816dc604ba0fbb5ab7cf7c4205 (diff) |
Bump hc2vpp version to 1.17.01-RC21.17.01-RC2
Also updates honeycomb dependencies to 1.17.01-RC2
Expected results after change submission:
1) all hc2vpp jars are uploaded to
https://nexus.fd.io/content/repositories/fd.io.release/io/fd/hc2vpp/
with 1.17.01-RC2 version set
2) honeycomb-1.17.01-RC2.noarch.rpm (outcome of hc2vpp-integration-1701-centos7)
is uploaded to
https://nexus.fd.io/content/repositories/fd.io.stable.1701.centos7/
io/fd/hc2vpp/honeycomb/1.17.01-RC2.noarch/
3) honeycomb-1.17.01-RC2_all-deb.deb (outcome of hc2vpp-integration-1701-ubuntu1404)
is uploaded to
https://nexus.fd.io/content/repositories/fd.io.stable.1701.ubuntu.trusty.main/
io/fd/hc2vpp/honeycomb/1.17.01-RC2_all/
4) honeycomb-1.17.01-RC2_all-deb.deb (outcome of hc2vpp-integration-1701-ubuntu1604)
is uploaded to
https://nexus.fd.io/content/repositories/fd.io.stable.1701.ubuntu.xenial.main/
io/fd/hc2vpp/honeycomb/1.17.01-RC2_all/
Change-Id: I2e281234d142535d740649e966e6b08f8398905b
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'packaging/deb/common/prepare.sh')
-rwxr-xr-x | packaging/deb/common/prepare.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/deb/common/prepare.sh b/packaging/deb/common/prepare.sh index fd08251dc..7e54151d0 100755 --- a/packaging/deb/common/prepare.sh +++ b/packaging/deb/common/prepare.sh @@ -11,9 +11,9 @@ BUILD_DIR=${SOURCE_DIR}/honeycomb-${VERSION} # Copy and unpack the archive with vpp-integration distribution ARCHIVE_DIR=${SOURCE_DIR}/../../../vpp-integration/minimal-distribution/target/ -ARCHIVE=${ARCHIVE_DIR}/vpp-integration-distribution-1.17.01-SNAPSHOT-hc.tar.gz +ARCHIVE=${ARCHIVE_DIR}/vpp-integration-distribution-${VERSION}-RC2-hc.tar.gz cp ${ARCHIVE} ${SOURCE_DIR} -ARCHIVE=${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-SNAPSHOT-hc.tar.gz +ARCHIVE=${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-RC2-hc.tar.gz tar -xf ${ARCHIVE} -C ${SOURCE_DIR}/ # Create packaging root @@ -21,7 +21,7 @@ rm -rf ${BUILD_DIR} mkdir ${BUILD_DIR} # Copy contents of tar.gz -mv ${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-SNAPSHOT/ ${BUILD_DIR}/ +mv ${SOURCE_DIR}/vpp-integration-distribution-${VERSION}-RC2/ ${BUILD_DIR}/ cp -r $2 ${BUILD_DIR} # OS service definition @@ -38,7 +38,7 @@ EOT # Install instructions cat <<EOT >> ${BUILD_DIR}/debian/install -vpp-integration-distribution-${VERSION}-SNAPSHOT/* /opt/honeycomb/ +vpp-integration-distribution-${VERSION}-RC2/* /opt/honeycomb/ $3 $4 EOT |