Merge "Fix disk image create errors behind proxy"
This commit is contained in:
commit
80057470a6
@ -6,10 +6,17 @@ fi
|
|||||||
set -eu
|
set -eu
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
install-packages python-dev python-pip qemu-utils parted hdparm util-linux genisoimage gcc
|
install-packages python-dev qemu-utils parted hdparm util-linux genisoimage gcc
|
||||||
|
|
||||||
|
# Install the latest version of pip and setuptools which has some
|
||||||
|
# fixes for building behind proxy.
|
||||||
|
curl -o /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py
|
||||||
|
python /tmp/get-pip.py
|
||||||
|
pip install -U setuptools
|
||||||
|
|
||||||
pip install -r /tmp/ironic-python-agent/requirements.txt
|
pip install -r /tmp/ironic-python-agent/requirements.txt
|
||||||
pip install /tmp/ironic-python-agent
|
pip install /tmp/ironic-python-agent
|
||||||
|
rm -f /tmp/get-pip.py
|
||||||
|
|
||||||
sudo echo $'[Unit]
|
sudo echo $'[Unit]
|
||||||
Description=Ironic Python Agent\n
|
Description=Ironic Python Agent\n
|
||||||
|
Loading…
Reference in New Issue
Block a user