Changes made in documentation (EXAMPLES section added)

Minor identation fixes
pull/3701/head
Balazs Pocze 11 years ago
parent d752919637
commit 1a6cb15ee6

@ -105,6 +105,17 @@ options:
'''
EXAMPLES = '''
# Stop mysql slave thread
- mysql_replication: mode=stopslave
# Get master binlog file name and binlog position
- mysql_replication: mode=getmaster
# Change master to master server 192.168.1.1 and use binary log 'mysql-bin.000009' with position 4578
- mysql_replication: mode=changemaster master_host=192.168.1.1 master_log_file=mysql-bin.000009 master_log_pos=4578
'''
import ConfigParser
import os
import warnings

Loading…
Cancel
Save