mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
When no use_tls is not specified and no tls parameters are given we need to not attempt tls.
This commit is contained in:
parent
eeb867daf0
commit
0ad023a0ac
1 changed files with 2 additions and 6 deletions
|
@ -593,12 +593,8 @@ class DockerManager(object):
|
||||||
# or tls_ca_cert (which requests verifying the server with
|
# or tls_ca_cert (which requests verifying the server with
|
||||||
# a specific ca certificate)
|
# a specific ca certificate)
|
||||||
use_tls = module.params.get('use_tls')
|
use_tls = module.params.get('use_tls')
|
||||||
if use_tls == 'no':
|
tls_config = None
|
||||||
tls_config = None
|
if use_tls != 'no':
|
||||||
else:
|
|
||||||
# If this stays True, we'll do encryption. If something overrides
|
|
||||||
# it, then we'll have a TLSConfig obj instead
|
|
||||||
tls_config = True
|
|
||||||
params = {}
|
params = {}
|
||||||
|
|
||||||
# Setup client auth
|
# Setup client auth
|
||||||
|
|
Loading…
Reference in a new issue