From c73d8423d7eda81fdfd855708ca33da6fe8ce99e Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Mon, 18 Sep 2017 02:08:03 +0000 Subject: [PATCH] mysql user for this host --- tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/main.yml b/tasks/main.yml index 4b1f225..9fd5ad2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -11,6 +11,7 @@ name: "{{postfixadmin_mysql_username}}" password: "{{postfixadmin_mysql_password}}" priv: "{{postfixadmin_mysql_database}}.*:ALL,GRANT" + host: "{{inventory_hostname}}" state: present delegate_to: "{{postfixadmin_mysql_host}}"