1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Update docker.py

Fix typo that prevents use_tls 'encrypt' option from working properly.
This commit is contained in:
moncho 2015-03-19 19:30:36 +01:00 committed by Matt Clay
parent 5262d768e0
commit 0156188a54

View file

@ -613,7 +613,7 @@ class DockerManager(object):
else: else:
params['verify'] = True params['verify'] = True
params['assert_hostname'] = tls_hostname params['assert_hostname'] = tls_hostname
elif use_tls == 'encrpyt': elif use_tls == 'encrypt':
params['verify'] = False params['verify'] = False
if params: if params: