Hack an install of libffi-devel because yum sucks

yum -y in the puppet fails open, which means it doesn't return
non-zero on failure. This means we can make images that don't work.
Until we can figure out why - just install it with a sledgehammer.

Change-Id: I821be58538007cfe93949601216cdf2525c896bb
This commit is contained in:
Monty Taylor 2014-07-21 11:38:40 -07:00
parent b1e384731a
commit 75734a8e1a

View File

@ -77,6 +77,12 @@
- timestamps
builders:
- shell: |
#!/bin/bash -xe
if ! rpm -ql libffi-devel >/dev/null ; then
sudo yum install -y libffi-devel
fi
rpm -ql libffi-devel
- revoke-sudo
- gerrit-git-prep
- python26: