From 838c787986bb129f22c99a3999b56346e363c4f3 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Mon, 12 Sep 2016 10:59:04 +0200 Subject: [PATCH] Fix deprecation warnings --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index f749d9c..20f5512 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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 }}"