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:
Travis Truman 2016-06-15 11:55:48 -04:00
parent 357e5432fe
commit b3fa6b4f68
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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