summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2013-09-06 12:50:50 -0500
committerJames Cammarata <jimi@sngx.net>2013-09-06 12:50:50 -0500
commitb65cefe893a1475321d5a3a375f691c5cdd1f32f (patch)
tree8ca9ec4a862d0ef33b22ab815c54fdb6c7ba51a7
parent03e124d91f39469cf2af3e61f16fe5557a5f8d18 (diff)
downloadansible-b65cefe893a1475321d5a3a375f691c5cdd1f32f.tar.gz
Cleaning up pep8 whitepsace issues in the mysql_replication module
-rw-r--r--library/database/mysql_replication20
1 files changed, 10 insertions, 10 deletions
diff --git a/library/database/mysql_replication b/library/database/mysql_replication
index ff245f41cc..32702369d6 100644
--- a/library/database/mysql_replication
+++ b/library/database/mysql_replication
@@ -372,25 +372,25 @@ def main():
if master_connect_retry:
chm.append("MASTER_CONNECT_RETRY='" + master_connect_retry + "'")
if master_log_file:
- chm.append("MASTER_LOG_FILE='" + master_log_file + "'")
+ chm.append("MASTER_LOG_FILE='" + master_log_file + "'")
if master_log_pos:
- chm.append("MASTER_LOG_POS=" + master_log_pos)
+ chm.append("MASTER_LOG_POS=" + master_log_pos)
if relay_log_file:
- chm.append("RELAY_LOG_FILE='" + relay_log_file + "'")
+ chm.append("RELAY_LOG_FILE='" + relay_log_file + "'")
if relay_log_pos:
- chm.append("RELAY_LOG_POS=" + relay_log_pos)
+ chm.append("RELAY_LOG_POS=" + relay_log_pos)
if master_ssl:
- chm.append("MASTER_SSL=" + master_ssl)
+ chm.append("MASTER_SSL=" + master_ssl)
if master_ssl_ca:
- chm.append("MASTER_SSL_CA='" + master_ssl_ca + "'")
+ chm.append("MASTER_SSL_CA='" + master_ssl_ca + "'")
if master_ssl_capath:
- chm.append("MASTER_SSL_CAPATH='" + master_ssl_capath + "'")
+ chm.append("MASTER_SSL_CAPATH='" + master_ssl_capath + "'")
if master_ssl_cert:
- chm.append("MASTER_SSL_CERT='" + master_ssl_cert + "'")
+ chm.append("MASTER_SSL_CERT='" + master_ssl_cert + "'")
if master_ssl_key:
- chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'")
+ chm.append("MASTER_SSL_KEY='" + master_ssl_key + "'")
if master_ssl_cipher:
- chm.append("MASTER_SSL_CIPTHER='" + master_ssl_cipher + "'")
+ chm.append("MASTER_SSL_CIPTHER='" + master_ssl_cipher + "'")
changemaster(cursor,chm)
module.exit_json(changed=True)
elif mode in "startslave":