2013-06-20 10:02:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-03-29 03:28:22 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
|
|
|
|
2013-06-20 10:02:18 +00:00
|
|
|
# FIXME: To avoid conflict between the pyOpenSSL installed via python-pip
|
|
|
|
# and pyOpenSSL installed via yum, we are going to sort it out installing
|
|
|
|
# it earlier at the beginning of the image building process. Pyhton-pip
|
|
|
|
# is installing pyOpenSSL as part of satisfying the requirements.txt
|
|
|
|
# in python-glanceclient and afterwards yum tries to install it as a
|
|
|
|
# dependency of the python-paste package needed for the heat element,
|
|
|
|
# this seems to be conflicting and causing the image building process to
|
|
|
|
# fail. The problem is hapenning on a Fedora 18 system.
|
|
|
|
install-packages python-pyopenssl
|