diff options
author | Feng Pan <fpan@redhat.com> | 2016-08-22 09:38:58 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2016-08-22 09:38:58 -0400 |
commit | 6d56bbffb0151c9ec6ac8c28e867ae150b6ba0ab (patch) | |
tree | 0f4f2fdae73f75e454eb04e872d1eb952430c8f3 /build | |
parent | 768da1ab4788130d62848b2db172503fa5b37e02 (diff) |
DPDK package fixes
- Update DPDK and ovs-dpdk rpm links
- Change curl to wget to get proper error return code when failure
occurs.
JIRA: APEX-119
Change-Id: Icdd8e11f1fff9e20695780215dee357b0aca45a5
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'build')
-rwxr-xr-x | build/overcloud-full.sh | 2 | ||||
-rw-r--r-- | build/variables.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/build/overcloud-full.sh b/build/overcloud-full.sh index e7f1dd7d..bce99437 100755 --- a/build/overcloud-full.sh +++ b/build/overcloud-full.sh @@ -46,7 +46,7 @@ pushd images > /dev/null dpdk_pkg_str='' for package in ${dpdk_rpms[@]}; do - curl -O "$dpdk_uri_base/$package" + wget "$dpdk_uri_base/$package" dpdk_pkg_str+=" --upload $package:/root/dpdk_rpms" done diff --git a/build/variables.sh b/build/variables.sh index fda735cd..1cca352d 100644 --- a/build/variables.sh +++ b/build/variables.sh @@ -18,11 +18,11 @@ doctor_driver=https://raw.githubusercontent.com/openstack/congress/master/congre dpdk_uri_base=http://artifacts.opnfv.org/ovsnfv dpdk_rpms=( -'ovs4opnfv-32930523-dpdk-16.04.0-1.el7.centos.x86_64.rpm' -'ovs4opnfv-32930523-dpdk-devel-16.04.0-1.el7.centos.x86_64.rpm' -'ovs4opnfv-32930523-dpdk-examples-16.04.0-1.el7.centos.x86_64.rpm' -'ovs4opnfv-32930523-dpdk-tools-16.04.0-1.el7.centos.x86_64.rpm' -'ovs4opnfv-32930523-openvswitch-2.5.90-0.12032.gitc61e93d6.1.el7.centos.x86_64.rpm' +'ovs4opnfv-55ef39e7-dpdk-16.04.0-1.el7.centos.x86_64.rpm' +'ovs4opnfv-55ef39e7-dpdk-devel-16.04.0-1.el7.centos.x86_64.rpm' +'ovs4opnfv-55ef39e7-dpdk-examples-16.04.0-1.el7.centos.x86_64.rpm' +'ovs4opnfv-55ef39e7-dpdk-tools-16.04.0-1.el7.centos.x86_64.rpm' +'ovs4opnfv-55ef39e7-openvswitch-2.5.90-0.12032.gitc61e93d6.1.el7.centos.x86_64.rpm' ) ovs_rpm_name=openvswitch-2.5.90-1.el7.centos.x86_64.rpm |