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:
parent
5262d768e0
commit
0156188a54
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue