1ee499729b
On fedora 18 the package pyOpenSSL is conflicting with one of the packages needed to build the bootstack image. The problem gets sorted if you install pyOpenSSL at the beginning of the image building process and this is what this patch is doing. Change-Id: I681683b81ad638dfeb690fde1bc7d08a2116aaed
12 lines
604 B
Bash
Executable File
12 lines
604 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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
|