Fix deprecation warnings

pull/14/head
Emilien Mantel 2016-09-12 10:59:04 +02:00
parent d726cdcee9
commit 838c787986
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
- name: MYSQL_DB | Create databases
mysql_db: name={{ item }} state=present
with_items: mysql_databases
with_items: "{{ mysql_databases }}"
- name: MYSQL_USER | Manages users...
mysql_user: >
@ -41,5 +41,5 @@
priv="{{ item.priv }}"
host="{{ item.host | default('localhost') }}"
state=present
with_items: mysql_users
with_items: "{{ mysql_users }}"