Fix tests while grant access with space char

pull/14/head
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

View File

@ -12,7 +12,7 @@ mysql_databases:
mysql_users:
- name: 'replication'
password: '1a2b3c'
priv: '*.*:"REPLICATION SLAVE"'
priv: '*.*:REPLICATION SLAVE'
host: '%'
mysql_replication_master: true
mysql_replication_slave: false