fix typos: remove duplicated word in comments

This commit is contained in:
supereagle
2017-06-17 17:17:22 +08:00
parent 0f7aa6727c
commit 87c29a08e1
20 changed files with 21 additions and 21 deletions

View File

@@ -72,7 +72,7 @@ def install_load_balancer(apiserver, tls):
cert_exists = server_cert_path and os.path.isfile(server_cert_path)
server_key_path = layer_options.get('server_key_path')
key_exists = server_key_path and os.path.isfile(server_key_path)
# Do both the the key and certificate exist?
# Do both the key and certificate exist?
if cert_exists and key_exists:
# At this point the cert and key exist, and they are owned by root.
chown = ['chown', 'www-data:www-data', server_cert_path]