fix: bug with multiple privileges

This commit is contained in:
Adrien Waksberg 2021-08-22 15:57:52 +02:00 committed by Adrien Waksberg
parent 2dbbaf8147
commit b9070661f9
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
## [Unreleased] ## [Unreleased]
### Fixed
- fix: bug with multiple privileges
## [v2.0.1] - 2020-03-28 ## [v2.0.1] - 2020-03-28
### Changed ### Changed

View file

@ -46,7 +46,7 @@
name: '{{ item.name }}' name: '{{ item.name }}'
host: '{{ item.host }}' host: '{{ item.host }}'
password: '{{ item.password }}' password: '{{ item.password }}'
priv: '{{ item.privileges|default("")|join(",") }}' priv: '{{ item.privileges|default("")|join("/") }}'
state: '{{ item.state|default("present") }}' state: '{{ item.state|default("present") }}'
login_user: '{{ mariadb_user }}' login_user: '{{ mariadb_user }}'
login_password: '{{ mariadb_password }}' login_password: '{{ mariadb_password }}'