fix: bug with multiple privileges
This commit is contained in:
parent
2dbbaf8147
commit
b9070661f9
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
|
||||
- fix: bug with multiple privileges
|
||||
|
||||
## [v2.0.1] - 2020-03-28
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
name: '{{ item.name }}'
|
||||
host: '{{ item.host }}'
|
||||
password: '{{ item.password }}'
|
||||
priv: '{{ item.privileges|default("")|join(",") }}'
|
||||
priv: '{{ item.privileges|default("")|join("/") }}'
|
||||
state: '{{ item.state|default("present") }}'
|
||||
login_user: '{{ mariadb_user }}'
|
||||
login_password: '{{ mariadb_password }}'
|
||||
|
|
Loading…
Reference in a new issue