Address Ansible bare variable usage
When executing the role with Ansible 2.1, the following deprecation warning is issued in the output for some tasks. [DEPRECATION WARNING]: Using bare variables is deprecated. This patch addresses the tasks to fix the behaviour appropriately Change-Id: I683ad1573bc9842dd96d40eea14d3c097f3e671c
This commit is contained in:
parent
357e5432fe
commit
b3fa6b4f68
@ -72,7 +72,7 @@
|
|||||||
until: install_packages|success
|
until: install_packages|success
|
||||||
retries: 5
|
retries: 5
|
||||||
delay: 2
|
delay: 2
|
||||||
with_items: neutron_requires_pip_packages
|
with_items: "{{ neutron_requires_pip_packages }}"
|
||||||
tags:
|
tags:
|
||||||
- neutron-install
|
- neutron-install
|
||||||
- neutron-pip-packages
|
- neutron-pip-packages
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
until: install_packages|success
|
until: install_packages|success
|
||||||
retries: 5
|
retries: 5
|
||||||
delay: 2
|
delay: 2
|
||||||
with_items: ovs_apt_packages
|
with_items: "{{ ovs_apt_packages }}"
|
||||||
tags:
|
tags:
|
||||||
- ovs-install
|
- ovs-install
|
||||||
- ovs-apt-packages
|
- ovs-apt-packages
|
||||||
|
Loading…
x
Reference in New Issue
Block a user