Merge "Make all install actions consistently use with_items"
This commit is contained in:
commit
0ca2f30c4f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user