mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
Fix quote on grants of more than one word
Fixed a quote location on the grants composed of more than one word. Current docs will raise an error with a invalid privilege command.
This commit is contained in:
parent
f20b09e2ec
commit
bddcf737c9
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ EXAMPLES = """
|
||||||
- mysql_user: name=sally host_all=yes state=absent
|
- mysql_user: name=sally host_all=yes state=absent
|
||||||
|
|
||||||
# Specify grants composed of more than one word
|
# Specify grants composed of more than one word
|
||||||
- mysql_user: name=replication password=12345 priv=*.*:"REPLICATION CLIENT" state=present
|
- mysql_user: name=replication password=12345 priv="*.*:REPLICATION CLIENT" state=present
|
||||||
|
|
||||||
# Revoke all privileges for user 'bob' and password '12345'
|
# Revoke all privileges for user 'bob' and password '12345'
|
||||||
- mysql_user: name=bob password=12345 priv=*.*:USAGE state=present
|
- mysql_user: name=bob password=12345 priv=*.*:USAGE state=present
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue