summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorRobin Schneider <ypid@riseup.net>2016-09-12 11:27:45 +0200
committerRené Moser <mail@renemoser.net>2016-09-12 11:27:45 +0200
commit67a1bebbd36a2f6daa418b72687ea0f883165f59 (patch)
tree81d08234398d6a7becb182e208c09dea4fbddf0e /database
parent061c6517eb50cc4f33bb8d1817948b171701c0a0 (diff)
downloadansible-modules-extras-67a1bebbd36a2f6daa418b72687ea0f883165f59.tar.gz
Use addresses and names reserved for documentation (#2894)
Trying to preserve the meaning of the examples. Related to: https://github.com/ansible/ansible/issues/17479
Diffstat (limited to 'database')
-rw-r--r--database/mysql/mysql_replication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/database/mysql/mysql_replication.py b/database/mysql/mysql_replication.py
index 8bc964cf..a7f366e9 100644
--- a/database/mysql/mysql_replication.py
+++ b/database/mysql/mysql_replication.py
@@ -108,8 +108,8 @@ EXAMPLES = '''
# 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
+# Change master to master server 192.0.2.1 and use binary log 'mysql-bin.000009' with position 4578
+- mysql_replication: mode=changemaster master_host=192.0.2.1 master_log_file=mysql-bin.000009 master_log_pos=4578
# Check slave status using port 3308
- mysql_replication: mode=getslave login_host=ansible.example.com login_port=3308