Fix tests while grant access with space char

This commit is contained in:
Emilien Mantel
2016-02-09 17:43:49 +01:00
parent fc85a9d9d6
commit a894efa81a
2 changed files with 5 additions and 5 deletions

View File

@@ -36,10 +36,10 @@
- name: MYSQL_USER | Manages users...
mysql_user: >
name={{ item.name }}
password={{ item.password }}
priv={{ item.priv }}
host={{ item.host | default('localhost') }}
name="{{ item.name }}"
password="{{ item.password }}"
priv="{{ item.priv }}"
host="{{ item.host | default('localhost') }}"
state=present
with_items: mysql_users