mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #10316 from whereismyjetpack/winrm_https
plaintext https transport connecting over http
This commit is contained in:
commit
65e68cdff9
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class Connection(object):
|
||||||
|
|
||||||
transport_schemes = {
|
transport_schemes = {
|
||||||
'http': [('kerberos', 'http'), ('plaintext', 'http'), ('plaintext', 'https')],
|
'http': [('kerberos', 'http'), ('plaintext', 'http'), ('plaintext', 'https')],
|
||||||
'https': [('kerberos', 'https'), ('plaintext', 'http'), ('plaintext', 'https')],
|
'https': [('kerberos', 'https'), ('plaintext', 'https')],
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, runner, host, port, user, password, *args, **kwargs):
|
def __init__(self, runner, host, port, user, password, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue