summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-01-10 19:44:25 -0800
committerMatt Clay <matt@mystile.com>2017-01-10 20:05:47 -0800
commit300181cfd3a30eefe41a48c0867146635b8a850f (patch)
tree0879d7cbdb0edeced8442cfc8732fd98d452992b
parent6ec0369c266786dac96b4ebd6b889d8d4bda2e62 (diff)
downloadansible-300181cfd3a30eefe41a48c0867146635b8a850f.tar.gz
Send current winrm config to ansible-core-ci.
-rw-r--r--test/runner/lib/core_ci.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/runner/lib/core_ci.py b/test/runner/lib/core_ci.py
index 6aaae057f0..0580fe7f1f 100644
--- a/test/runner/lib/core_ci.py
+++ b/test/runner/lib/core_ci.py
@@ -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,
)
)