Fix tests while grant access with space char
parent
fc85a9d9d6
commit
a894efa81a
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue