train-winrm 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/train-winrm/transport.rb +6 -0
- data/lib/train-winrm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f285f418da910b5aa18969c6eb97f9702024bbdbaca9ec085d293708af3172e5
|
4
|
+
data.tar.gz: 81e3e1f9f10a11d62b02911514acbb076d3bcc91424d11d6a39fed1db24afa6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4555a472e56ecf3f72f1f84e2002053d400305370daa41a3f39ce83d993c0859e6e0d089bcab236d173d2fe76bf4731feca62a8591bf63ac7784cf5ca1ccb061
|
7
|
+
data.tar.gz: ef30862cd5a211b093a44779069ff3b0273d50478fec2fe9eb276b630462254a990e8d119226f9f8f8f56bb41b992ae0e7f9374a5ff794a9eec596fadf0e886b
|
@@ -74,6 +74,9 @@ module TrainPlugins
|
|
74
74
|
# completed in this time, only that the server has ack'd the request.
|
75
75
|
option :operation_timeout, default: nil
|
76
76
|
option :winrm_shell_type , default: "powershell"
|
77
|
+
option :client_cert , default: nil
|
78
|
+
option :client_key , default: nil
|
79
|
+
option :client_key_pass , default: nil
|
77
80
|
|
78
81
|
def initialize(opts)
|
79
82
|
super(opts)
|
@@ -147,6 +150,9 @@ module TrainPlugins
|
|
147
150
|
ca_trust_file: opts[:ca_trust_file],
|
148
151
|
ssl_peer_fingerprint: opts[:ssl_peer_fingerprint],
|
149
152
|
winrm_shell_type: opts[:winrm_shell_type],
|
153
|
+
client_cert: opts[:client_cert],
|
154
|
+
client_key: opts[:client_key],
|
155
|
+
key_pass: opts[:client_key_pass],
|
150
156
|
}
|
151
157
|
end
|
152
158
|
|
data/lib/train-winrm/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: train-winrm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chef InSpec Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: winrm
|