mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
plaintext not supported in Windows Server 2016.
ntlm authentication is backwards compatible to Windows Server 2008 at least, but plaintext is not supported in Server 2016.
This commit is contained in:
parent
09dcb8ffce
commit
df26cdc1d6
@ -835,7 +835,7 @@ def wait_for_winrm(host, port, username, password, timeout=900, use_ssl=True, ve
|
||||
)
|
||||
transport = 'ssl'
|
||||
if not use_ssl:
|
||||
transport = 'plaintext'
|
||||
transport = 'ntlm'
|
||||
trycount = 0
|
||||
while True:
|
||||
trycount += 1
|
||||
|
Loading…
Reference in New Issue
Block a user