mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: Add REPLICA MONITOR privilege to supported (#108)
* mysql_user: Add REPLICA MONITOR privilege to supported * Add changelog fragment
This commit is contained in:
parent
fc2dd0079f
commit
baea97d24c
2 changed files with 5 additions and 1 deletions
2
changelogs/fragments/108-mysql_priv_add_grant.yml
Normal file
2
changelogs/fragments/108-mysql_priv_add_grant.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- mysql_user - add support for ``REPLICA MONITOR`` privilege (https://github.com/ansible-collections/community.mysql/issues/105).
|
|
@ -340,7 +340,9 @@ VALID_PRIVS = frozenset(('CREATE', 'DROP', 'GRANT', 'GRANT OPTION',
|
||||||
'REPLICATION MASTER ADMIN',
|
'REPLICATION MASTER ADMIN',
|
||||||
'REPLICATION SLAVE ADMIN',
|
'REPLICATION SLAVE ADMIN',
|
||||||
'SET USER',
|
'SET USER',
|
||||||
'SHOW_ROUTINE',))
|
'SHOW_ROUTINE',
|
||||||
|
'SLAVE MONITOR',
|
||||||
|
'REPLICA MONITOR',))
|
||||||
|
|
||||||
|
|
||||||
class InvalidPrivsError(Exception):
|
class InvalidPrivsError(Exception):
|
||||||
|
|
Loading…
Add table
Reference in a new issue