summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Chapman <woppin@gmail.com>2016-01-14 15:03:37 +1100
committerMichael Chapman <woppin@gmail.com>2016-02-16 00:42:04 +1100
commite60d7dae958066f7003533fe03cdd2fc06a04685 (patch)
treec98108d898bac800dc405f7fe405edd035071815
parentdeb9994b6b9bd6f52729824cb70dc8d322d70d16 (diff)
Prevent build crashes on empty cache
When there is no file to run md5sum on, instack will bail instead of downloading a fresh copy. Check for file existence first, and if it fails then immediately download required file. Also don't try to install epel if it's already there. Change-Id: I2248a916207b0bf9368d74d19c4087da846ed3d9
-rwxr-xr-xbuild/instack.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/instack.sh b/build/instack.sh
index 91c0d355..3f7d681a 100755
--- a/build/instack.sh
+++ b/build/instack.sh
@@ -198,7 +198,7 @@ IMAGES+=" undercloud.qcow2"
for i in $IMAGES; do
# download prebuilt images from RDO Project
- if [ "$(curl -L $rdo_images_uri/${i}.md5 | awk {'print $1'})" != "$(md5sum stack/$i | awk {'print $1'})" ] ; then
+ if [ ! -f stack/$i ] || [ "$(curl -L $rdo_images_uri/${i}.md5 | awk {'print $1'})" != "$(md5sum stack/$i | awk {'print $1'})" ] ; then
#if [ $i == "undercloud.qcow2" ]; then
### there's a problem with the Content-Length reported by the centos artifacts
### server so using wget for it until a resolution is figured out.
@@ -260,7 +260,7 @@ LIBGUESTFS_BACKEND=direct virt-customize \
--run-command "cd /etc/puppet/modules/ && rm -rf aodh && tar xzf puppet-aodh.tar.gz" \
--run-command "yum remove -y openstack-neutron-openvswitch" \
--run-command "echo 'nf_conntrack_proto_sctp' > /etc/modules-load.d/nf_conntrack_proto_sctp.conf" \
- --install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
+ --run-command "if ! rpm -q epel-release > /dev/null; then yum install -y http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm; fi" \
--install "$AODH_PKG,ceph" \
-a overcloud-full-opendaylight.qcow2