Fix ansible-playbook segfault

ansible-playbook segfaults when we supply the "-I" option to pip.
Remove this option since it's also slowing down our run. See related
bug for more details.

Closes-Bug: 1459801
Change-Id: Idaf090d642c5e0ab5e143d824ca99f9d39679d87
This commit is contained in:
stephane 2015-05-28 18:52:04 -07:00
parent 1f31bc58db
commit fa8820ce81
3 changed files with 3 additions and 3 deletions

View File

@ -22,4 +22,4 @@
- name: "DIB - Resyncing local repository"
command: git pull --ff-only chdir=/opt/stack/diskimage-builder
- name: "DIB - Installing patched library."
command: pip install -I --force-reinstall /opt/stack/diskimage-builder
command: pip install --force-reinstall /opt/stack/diskimage-builder

View File

@ -25,4 +25,4 @@
script: parse_zuul_changes.py /opt/stack/python-ironicclient https://review.openstack.org openstack/python-ironicclient "{{ lookup('env', 'ZUUL_CHANGES') }}"
when: ci_testing == true
- name: "python-ironicclient - Installing patched python-ironicclient library."
command: pip install -I --force-reinstall /opt/stack/python-ironicclient
command: pip install --force-reinstall /opt/stack/python-ironicclient

View File

@ -25,4 +25,4 @@
script: parse_zuul_changes.py /opt/stack/shade https://review.openstack.org openstack-infra/shade "{{ lookup('env', 'ZUUL_CHANGES') }}"
when: ci_testing == true
- name: "Shade - Installing patched shade library."
command: pip install -I --force-reinstall /opt/stack/shade
command: pip install --force-reinstall /opt/stack/shade