mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Change examples syntax on mysql_variables module
This commit is contained in:
parent
db723af8aa
commit
e0cfe14901
1 changed files with 5 additions and 2 deletions
|
@ -44,10 +44,13 @@ extends_documentation_fragment: mysql
|
||||||
'''
|
'''
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Check for sync_binlog setting
|
# Check for sync_binlog setting
|
||||||
- mysql_variables: variable=sync_binlog
|
- mysql_variables:
|
||||||
|
variable: sync_binlog
|
||||||
|
|
||||||
# Set read_only variable to 1
|
# Set read_only variable to 1
|
||||||
- mysql_variables: variable=read_only value=1
|
- mysql_variables:
|
||||||
|
variable: read_only
|
||||||
|
value: 1
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue