Merge "Fix ansible-playbook segfault"

This commit is contained in:
Jenkins 2015-05-29 13:51:53 +00:00 committed by Gerrit Code Review
commit d57cb14498
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