Send current winrm config to ansible-core-ci.
This commit is contained in:
parent
6ec0369c26
commit
300181cfd3
1 changed files with 4 additions and 0 deletions
|
@ -213,12 +213,16 @@ class AnsibleCoreCI(object):
|
|||
verbosity=1)
|
||||
return
|
||||
|
||||
with open('examples/scripts/ConfigureRemotingForAnsible.ps1', 'r') as winrm_config_fd:
|
||||
winrm_config = winrm_config_fd.read()
|
||||
|
||||
data = dict(
|
||||
config=dict(
|
||||
platform=self.platform,
|
||||
version=self.version,
|
||||
public_key=self.ssh_key.pub_contents if self.ssh_key else None,
|
||||
query=False,
|
||||
winrm_config=winrm_config,
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue