Changes made in documentation (EXAMPLES section added)

Minor identation fixes
This commit is contained in:
Balazs Pocze 2013-08-08 00:10:06 +02:00
parent 3b9171077c
commit 1a108a227e

View file

@ -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