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: I7a8bc1f847eaa894674d0c0db8a60f46ad334377
This commit is contained in:
Travis Truman 2016-06-15 15:02:07 -04:00
parent 12ec7106f2
commit b1e2bb003d
2 changed files with 2 additions and 2 deletions

View File

@ -38,6 +38,6 @@
until: install_apt_packages | success
retries: 5
delay: 2
with_items: rsyslog_server_packages
with_items: "{{ rsyslog_server_packages }}"
tags:
- rsyslog-apt-packages

View File

@ -28,6 +28,6 @@
until: install_yum_packages | success
retries: 5
delay: 2
with_items: rsyslog_server_packages
with_items: "{{ rsyslog_server_packages }}"
tags:
- rsyslog-yum-packages