corrected several usages of deprecated bare vars

This commit is contained in:
Brian Coca
2016-02-08 13:13:15 -05:00
parent ba51ed06cf
commit 08b3dbcda3
9 changed files with 18 additions and 18 deletions

View File

@@ -28,17 +28,17 @@
- name: install mysqldb_test rpm dependencies
yum: name={{ item }} state=latest
with_items: mysql_packages
with_items: "{{mysql_packages}}"
when: ansible_pkg_mgr == 'yum'
- name: install mysqldb_test rpm dependencies
dnf: name={{ item }} state=latest
with_items: mysql_packages
with_items: "{{mysql_packages}}"
when: ansible_pkg_mgr == 'dnf'
- name: install mysqldb_test debian dependencies
apt: name={{ item }} state=latest
with_items: mysql_packages
with_items: "{{mysql_packages}}"
when: ansible_pkg_mgr == 'apt'
- name: start mysql_db service if not running