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:
Josh Rendek 2015-11-22 23:09:15 -05:00
parent 0e043f8c58
commit ccc06636d7

View file

@ -137,7 +137,7 @@ EXAMPLES = """
- mysql_user: login_user=root login_password=123456 name=sally state=absent - mysql_user: login_user=root login_password=123456 name=sally 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