Change examples syntax on mysql_variables module

This commit is contained in:
Sam Doran 2016-10-12 15:20:41 -04:00 committed by Matt Clay
parent db723af8aa
commit e0cfe14901

View file

@ -44,10 +44,13 @@ extends_documentation_fragment: mysql
'''
EXAMPLES = '''
# Check for sync_binlog setting
- mysql_variables: variable=sync_binlog
- mysql_variables:
variable: sync_binlog
# Set read_only variable to 1
- mysql_variables: variable=read_only value=1
- mysql_variables:
variable: read_only
value: 1
'''