Merge "Make all install actions consistently use with_items"

This commit is contained in:
Jenkins 2016-01-26 23:49:29 +00:00 committed by Gerrit Code Review
commit 0ca2f30c4f
3 changed files with 7 additions and 14 deletions

View File

@ -49,8 +49,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_compute_pip_packages }}"
with_items: nova_compute_pip_packages
when:
- nova_venv_enabled | bool
- nova_get_venv | failed
@ -86,8 +85,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_compute_pip_packages }}"
with_items: nova_compute_pip_packages
when: not nova_venv_enabled | bool
tags:
- nova-install

View File

@ -66,8 +66,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_novnc_pip_packages }}"
with_items: nova_novnc_pip_packages
when:
- nova_venv_enabled | bool
- nova_get_venv | failed
@ -84,8 +83,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_novnc_pip_packages }}"
with_items: nova_novnc_pip_packages
when: not nova_venv_enabled | bool
tags:
- nova-install

View File

@ -46,8 +46,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_requires_pip_packages }}"
with_items: nova_requires_pip_packages
tags:
- nova-install
- nova-pip-packages
@ -115,8 +114,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_pip_packages }}"
with_items: nova_pip_packages
when:
- nova_venv_enabled | bool
- nova_get_venv | failed
@ -133,8 +131,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items:
- "{{ nova_pip_packages }}"
with_items: nova_pip_packages
when: not nova_venv_enabled | bool
tags:
- nova-install