mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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)
|
verbosity=1)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
with open('examples/scripts/ConfigureRemotingForAnsible.ps1', 'r') as winrm_config_fd:
|
||||||
|
winrm_config = winrm_config_fd.read()
|
||||||
|
|
||||||
data = dict(
|
data = dict(
|
||||||
config=dict(
|
config=dict(
|
||||||
platform=self.platform,
|
platform=self.platform,
|
||||||
version=self.version,
|
version=self.version,
|
||||||
public_key=self.ssh_key.pub_contents if self.ssh_key else None,
|
public_key=self.ssh_key.pub_contents if self.ssh_key else None,
|
||||||
query=False,
|
query=False,
|
||||||
|
winrm_config=winrm_config,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue