train-winrm 0.2.3 → 0.2.12
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/LICENSE +201 -0
- data/lib/train-winrm.rb +4 -4
- data/lib/train-winrm/connection.rb +41 -8
- data/lib/train-winrm/transport.rb +31 -17
- data/lib/train-winrm/version.rb +1 -1
- metadata +26 -8
- data/Gemfile +0 -26
- data/README.md +0 -105
- data/train-winrm.gemspec +0 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 045fc82d7501aa62025f81b295fd89486b7bba3766e9559b3457ac706d489eee
|
4
|
+
data.tar.gz: b87548aef58d07f7a5d071366a19b6be78939e0046c87ced256a9184b38f0580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43aa548d919c0d47ff77e0d3c0961fa0c0c39e1fd3262bdd0af0f549ebad2f2e8e06147f505b9411a9d82467e9e66a64e51875fc0611a126e5c9a4cf7f559394
|
7
|
+
data.tar.gz: 16fbf2a183e63959cb03c351472887cffbbe7d1dd2ee7cbc71c919b5dea514459ba77794da54cafc1f2fce480f805d5077fd945ca70b6e099469a43d50aafbc8
|
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/lib/train-winrm.rb
CHANGED
@@ -11,10 +11,10 @@
|
|
11
11
|
libdir = File.dirname(__FILE__)
|
12
12
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
13
13
|
|
14
|
-
# It's
|
15
|
-
|
14
|
+
# It's traditional to keep your gem version in a separate file, so CI can find it easier.
|
15
|
+
require_relative "train-winrm/version"
|
16
16
|
|
17
17
|
# A train plugin has three components: Transport, Connection, and (optionally) Platform.
|
18
18
|
# Transport acts as the glue.
|
19
|
-
|
20
|
-
|
19
|
+
require_relative "train-winrm/transport"
|
20
|
+
require_relative "train-winrm/connection"
|
@@ -1,5 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
1
|
#
|
4
2
|
# Author:: Salim Afiune (<salim@afiunemaya.com.mx>)
|
5
3
|
# Author:: Matt Wrock (<matt@mattwrock.com>)
|
@@ -35,6 +33,8 @@
|
|
35
33
|
|
36
34
|
require "train"
|
37
35
|
require "train/plugins"
|
36
|
+
# This module may need to directly require WinRM to reference its exception classes
|
37
|
+
require "winrm" unless defined?(WinRM)
|
38
38
|
|
39
39
|
module TrainPlugins
|
40
40
|
module WinRM
|
@@ -49,6 +49,7 @@ module TrainPlugins
|
|
49
49
|
@connection_retry_sleep = @options.delete(:connection_retry_sleep)
|
50
50
|
@max_wait_until_ready = @options.delete(:max_wait_until_ready)
|
51
51
|
@operation_timeout = @options.delete(:operation_timeout)
|
52
|
+
@shell_type = @options.delete(:winrm_shell_type)
|
52
53
|
end
|
53
54
|
|
54
55
|
# (see Base::Connection#close)
|
@@ -109,15 +110,47 @@ module TrainPlugins
|
|
109
110
|
Train::File::Remote::Windows.new(self, path)
|
110
111
|
end
|
111
112
|
|
112
|
-
def run_command_via_connection(command, &data_handler)
|
113
|
+
def run_command_via_connection(command, opts = {}, &data_handler)
|
113
114
|
return if command.nil?
|
114
115
|
|
115
116
|
logger.debug("[WinRM] #{self} (#{command})")
|
116
117
|
out = ""
|
118
|
+
response = nil
|
119
|
+
timeout = opts[:timeout]&.to_i
|
120
|
+
|
121
|
+
# Run the command in a thread, to support timing out the command
|
122
|
+
thr = Thread.new do
|
123
|
+
# Surface any exceptions in this thread back to this method
|
124
|
+
Thread.current.report_on_exception = false
|
125
|
+
Thread.current.abort_on_exception = true
|
126
|
+
begin
|
127
|
+
response = session.run(command) do |stdout, _|
|
128
|
+
yield(stdout) if data_handler && stdout
|
129
|
+
out << stdout if stdout
|
130
|
+
end
|
131
|
+
rescue ::WinRM::WinRMHTTPTransportError => e
|
132
|
+
# If this command hits timeout, there is also a potential race in the HTTP transport
|
133
|
+
# where decryption is attempted on an empty message.
|
134
|
+
raise e unless timeout && e.to_s == "Could not decrypt NTLM message. ()."
|
135
|
+
rescue RuntimeError => e
|
136
|
+
# Ref: https://github.com/WinRb/WinRM/issues/315
|
137
|
+
# If this command hits timeout, calling close with the command currently running causes
|
138
|
+
# a RuntimeError error in WinRM's cleanup code. This specific error can be ignored.
|
139
|
+
# The command will be terminated and further commands can be sent on the connection.
|
140
|
+
raise e unless timeout && e.to_s == "opts[:shell_id] is required"
|
141
|
+
end
|
142
|
+
end
|
117
143
|
|
118
|
-
|
119
|
-
|
120
|
-
|
144
|
+
if timeout
|
145
|
+
res = thr.join(timeout)
|
146
|
+
unless res
|
147
|
+
msg = "PowerShell command '(#{command})' reached timeout (#{timeout}s)"
|
148
|
+
logger.info("[WinRM] #{msg}")
|
149
|
+
close
|
150
|
+
raise Train::CommandTimeoutReached.new msg
|
151
|
+
end
|
152
|
+
else
|
153
|
+
thr.join
|
121
154
|
end
|
122
155
|
|
123
156
|
CommandResult.new(out, response.stderr, response.exitcode)
|
@@ -148,7 +181,7 @@ module TrainPlugins
|
|
148
181
|
@file_manager ||= begin
|
149
182
|
# Ensure @service is available:
|
150
183
|
wait_until_ready
|
151
|
-
WinRM::FS::FileManager.new(@service)
|
184
|
+
::WinRM::FS::FileManager.new(@service)
|
152
185
|
end
|
153
186
|
end
|
154
187
|
|
@@ -197,7 +230,7 @@ module TrainPlugins
|
|
197
230
|
opts[:operation_timeout] = @operation_timeout unless @operation_timeout.nil?
|
198
231
|
@service = ::WinRM::Connection.new(options.merge(opts))
|
199
232
|
@service.logger = logger
|
200
|
-
@service.shell(
|
233
|
+
@service.shell(@shell_type)
|
201
234
|
end
|
202
235
|
end
|
203
236
|
|
@@ -1,5 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
1
|
#
|
4
2
|
# Author:: Salim Afiune (<salim@afiunemaya.com.mx>)
|
5
3
|
# Author:: Matt Wrock (<matt@mattwrock.com>)
|
@@ -21,8 +19,6 @@
|
|
21
19
|
# See the License for the specific language governing permissions and
|
22
20
|
# limitations under the License.
|
23
21
|
|
24
|
-
require "rbconfig"
|
25
|
-
require "uri"
|
26
22
|
require "train"
|
27
23
|
require "train/errors"
|
28
24
|
require "train/plugins"
|
@@ -46,10 +42,11 @@ module TrainPlugins
|
|
46
42
|
class Transport < Train.plugin(1) # rubocop:disable Metrics/ClassLength
|
47
43
|
name "winrm"
|
48
44
|
|
49
|
-
|
45
|
+
require_relative "connection"
|
50
46
|
|
51
47
|
# ref: https://github.com/winrb/winrm#transports
|
52
48
|
SUPPORTED_WINRM_TRANSPORTS = %i{negotiate ssl plaintext kerberos}.freeze
|
49
|
+
SUPPORTED_WINRM_SHELL_TYPES = %i{powershell elevated cmd}.freeze
|
53
50
|
|
54
51
|
# common target configuration
|
55
52
|
option :host, required: true
|
@@ -76,6 +73,7 @@ module TrainPlugins
|
|
76
73
|
# from the winrm endpoint. Does not mean that the command has
|
77
74
|
# completed in this time, only that the server has ack'd the request.
|
78
75
|
option :operation_timeout, default: nil
|
76
|
+
option :winrm_shell_type , default: "powershell"
|
79
77
|
|
80
78
|
def initialize(opts)
|
81
79
|
super(opts)
|
@@ -109,6 +107,11 @@ module TrainPlugins
|
|
109
107
|
raise Train::ClientError, "Unsupported transport type: #{winrm_transport.inspect}"
|
110
108
|
end
|
111
109
|
|
110
|
+
winrm_shell_type = opts[:winrm_shell_type].to_sym
|
111
|
+
unless SUPPORTED_WINRM_SHELL_TYPES.include?(winrm_shell_type)
|
112
|
+
raise Train::ClientError, "Unsupported winrm shell type: #{winrm_shell_type.inspect}"
|
113
|
+
end
|
114
|
+
|
112
115
|
# remove leading '/'
|
113
116
|
path = (opts[:path] || "").sub(%r{^/+}, "")
|
114
117
|
|
@@ -116,6 +119,7 @@ module TrainPlugins
|
|
116
119
|
end
|
117
120
|
|
118
121
|
WINRM_FS_SPEC_VERSION = "~> 1.0".freeze
|
122
|
+
WINRM_ELEVATED_SPEC_VERSION = "~> 1.2.2".freeze
|
119
123
|
|
120
124
|
# Builds the hash of options needed by the Connection object on
|
121
125
|
# construction.
|
@@ -142,13 +146,14 @@ module TrainPlugins
|
|
142
146
|
service: opts[:kerberos_service],
|
143
147
|
ca_trust_file: opts[:ca_trust_file],
|
144
148
|
ssl_peer_fingerprint: opts[:ssl_peer_fingerprint],
|
149
|
+
winrm_shell_type: opts[:winrm_shell_type],
|
145
150
|
}
|
146
151
|
end
|
147
152
|
|
148
153
|
# Creates a new WinRM Connection instance and save it for potential
|
149
154
|
# future reuse.
|
150
155
|
#
|
151
|
-
# @param options [Hash]
|
156
|
+
# @param options [Hash] connection options
|
152
157
|
# @return [WinRM::Connection] a WinRM Connection instance
|
153
158
|
# @api private
|
154
159
|
def create_new_connection(options, &block)
|
@@ -166,32 +171,41 @@ module TrainPlugins
|
|
166
171
|
spec_version = WINRM_FS_SPEC_VERSION.dup
|
167
172
|
logger.debug("winrm-fs requested," \
|
168
173
|
" loading WinRM::FS gem (#{spec_version})")
|
169
|
-
|
170
|
-
|
171
|
-
|
174
|
+
load_dependency("winrm-fs", spec_version)
|
175
|
+
|
176
|
+
spec_version = WINRM_ELEVATED_SPEC_VERSION.dup
|
177
|
+
logger.debug("winrm-elevated requested," \
|
178
|
+
" loading WinRM-elevated gem (#{spec_version})")
|
179
|
+
load_dependency("winrm-elevated", spec_version)
|
180
|
+
end
|
181
|
+
|
182
|
+
def load_dependency(gem_name, spec_version)
|
183
|
+
gem gem_name, spec_version
|
184
|
+
first_load = require gem_name
|
185
|
+
load_winrm_transport!(gem_name)
|
172
186
|
|
173
187
|
if first_load
|
174
|
-
logger.debug("
|
188
|
+
logger.debug("#{gem_name} library loaded")
|
175
189
|
else
|
176
|
-
logger.debug("
|
190
|
+
logger.debug("#{gem_name} previously loaded")
|
177
191
|
end
|
178
192
|
rescue LoadError => e
|
179
193
|
logger.fatal(
|
180
|
-
"The
|
194
|
+
"The `#{gem_name}' gem is missing and must" \
|
181
195
|
" be installed or cannot be properly activated. Run" \
|
182
|
-
" `gem install
|
196
|
+
" `gem install #{gem_name} --version '#{spec_version}'`" \
|
183
197
|
" or add the following to your Gemfile if you are using Bundler:" \
|
184
|
-
" `gem '
|
198
|
+
" `gem '#{gem_name}', '#{spec_version}'`."
|
185
199
|
)
|
186
200
|
raise Train::UserError,
|
187
|
-
"Could not load or activate
|
201
|
+
"Could not load or activate #{gem_name} (#{e.message})"
|
188
202
|
end
|
189
203
|
|
190
204
|
# Load WinRM::Transport code.
|
191
205
|
#
|
192
206
|
# @api private
|
193
|
-
def load_winrm_transport!
|
194
|
-
silence_warnings { require
|
207
|
+
def load_winrm_transport!(gem_name)
|
208
|
+
silence_warnings { require gem_name }
|
195
209
|
end
|
196
210
|
|
197
211
|
# Return the last saved WinRM connection instance.
|
data/lib/train-winrm/version.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,49 @@
|
|
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.12
|
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: 2021-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: winrm
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.3.6
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 2.3.6
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: winrm-elevated
|
15
35
|
requirement: !ruby/object:Gem::Requirement
|
16
36
|
requirements:
|
17
37
|
- - "~>"
|
18
38
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
39
|
+
version: 1.2.2
|
20
40
|
type: :runtime
|
21
41
|
prerelease: false
|
22
42
|
version_requirements: !ruby/object:Gem::Requirement
|
23
43
|
requirements:
|
24
44
|
- - "~>"
|
25
45
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
46
|
+
version: 1.2.2
|
27
47
|
- !ruby/object:Gem::Dependency
|
28
48
|
name: winrm-fs
|
29
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,13 +66,11 @@ executables: []
|
|
46
66
|
extensions: []
|
47
67
|
extra_rdoc_files: []
|
48
68
|
files:
|
49
|
-
-
|
50
|
-
- README.md
|
69
|
+
- LICENSE
|
51
70
|
- lib/train-winrm.rb
|
52
71
|
- lib/train-winrm/connection.rb
|
53
72
|
- lib/train-winrm/transport.rb
|
54
73
|
- lib/train-winrm/version.rb
|
55
|
-
- train-winrm.gemspec
|
56
74
|
homepage: https://github.com/inspec/train-winrm
|
57
75
|
licenses:
|
58
76
|
- Apache-2.0
|
@@ -72,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
90
|
- !ruby/object:Gem::Version
|
73
91
|
version: '0'
|
74
92
|
requirements: []
|
75
|
-
rubygems_version: 3.
|
93
|
+
rubygems_version: 3.1.4
|
76
94
|
signing_key:
|
77
95
|
specification_version: 4
|
78
96
|
summary: Windows WinRM API Transport for Train
|
data/Gemfile
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
# This is a Gemfile, which is used by bundler
|
6
|
-
# to ensure a coherent set of gems is installed.
|
7
|
-
# This file lists dependencies needed when outside
|
8
|
-
# of a gem (the gemspec lists deps for gem deployment)
|
9
|
-
|
10
|
-
# Bundler should refer to the gemspec for any dependencies.
|
11
|
-
gemspec
|
12
|
-
|
13
|
-
# Remaining group is only used for development.
|
14
|
-
group :development do
|
15
|
-
# Depend on this here, not in the gemspec - to avoid having to have
|
16
|
-
# client applications induce circular dependencies
|
17
|
-
gem "train-core", "~> 3.0"
|
18
|
-
gem "bundler"
|
19
|
-
gem "byebug"
|
20
|
-
gem "m"
|
21
|
-
gem "minitest"
|
22
|
-
gem "mocha"
|
23
|
-
gem "pry"
|
24
|
-
gem "rake"
|
25
|
-
gem "chefstyle"
|
26
|
-
end
|
data/README.md
DELETED
@@ -1,105 +0,0 @@
|
|
1
|
-
# train-winrm - Train Plugin for connecting to Windows via Remote Management
|
2
|
-
|
3
|
-
* **Project State: Active**
|
4
|
-
* **Issues Response SLA: 3 business days**
|
5
|
-
* **Pull Request Response SLA: 3 business days**
|
6
|
-
|
7
|
-
This plugin allows applications that rely on Train to communicate with the WinRM API. For example, you could use this to audit Windows Server 2016 machines.
|
8
|
-
|
9
|
-
This plugin relies on the `winrm` and `winrm-fs` gems for implementation.
|
10
|
-
|
11
|
-
Train itself has no CLI, nor a sophisticated test harness. Chef InSpec does have such facilities, so installing Train plugins will require a Chef InSpec installation. You do not need to use or understand Chef InSpec.
|
12
|
-
|
13
|
-
Train plugins may be developed without a Chef InSpec installation.
|
14
|
-
|
15
|
-
## To Install this as a User
|
16
|
-
|
17
|
-
### ChefDK Installation
|
18
|
-
|
19
|
-
After August 2019, this plugin will be distributed with ChefDK; you do not need to install it separately.
|
20
|
-
|
21
|
-
### Manual Installation using `inspec plugin install`
|
22
|
-
|
23
|
-
Train plugins are distributed as gems. You may choose to manage the gem yourself, but if you are an Chef InSpec user, Chef InSpec can handle it for you.
|
24
|
-
|
25
|
-
You will need Chef InSpec v2.3 or later.
|
26
|
-
|
27
|
-
Simply run:
|
28
|
-
|
29
|
-
```
|
30
|
-
$ inspec plugin install train-winrm
|
31
|
-
```
|
32
|
-
|
33
|
-
You can then run, using Chef InSpec as an example:
|
34
|
-
|
35
|
-
```
|
36
|
-
you@home $ inspec some-profile winrm://someuser@somehost --password somepassword
|
37
|
-
```
|
38
|
-
|
39
|
-
From Ruby code, you may use this plugin as follows:
|
40
|
-
```
|
41
|
-
require 'train'
|
42
|
-
transport = Train.create(
|
43
|
-
'winrm',
|
44
|
-
host: '1.2.3.4',
|
45
|
-
user: 'Administrator',
|
46
|
-
password: '...',
|
47
|
-
ssl: true,
|
48
|
-
self_signed: true
|
49
|
-
)
|
50
|
-
conn = transport.connection
|
51
|
-
```
|
52
|
-
|
53
|
-
## Target Options for Train-WinRM
|
54
|
-
|
55
|
-
### host
|
56
|
-
|
57
|
-
Required `String`. The hostname or IP address used for connection.
|
58
|
-
|
59
|
-
#### port
|
60
|
-
|
61
|
-
Optional `Integer`, default 5985 (plain) or 5896 (SSL). The port number to which the connection should be made.
|
62
|
-
|
63
|
-
### user
|
64
|
-
|
65
|
-
Optional `String`, username used for sign in. Default `Administrator`.
|
66
|
-
|
67
|
-
### password
|
68
|
-
|
69
|
-
Optional `String`, password used for sign in. None sent if not provided.
|
70
|
-
|
71
|
-
### ssl
|
72
|
-
|
73
|
-
Optional `Boolean`. Defaults to `false`. Determines whether to use SSL to encrypt communications.
|
74
|
-
|
75
|
-
Several other options exist. To see these options, run:
|
76
|
-
|
77
|
-
```
|
78
|
-
puts Train.options('winrm')
|
79
|
-
```
|
80
|
-
|
81
|
-
## Reporting Issues
|
82
|
-
|
83
|
-
Bugs, typos, limitations, and frustrations are welcome to be reported through the [GitHub issues page for the train-winrm project](https://github.com/inspec/train-winrm/issues).
|
84
|
-
|
85
|
-
You may also ask questions in the #inspec channel of the Chef Community Slack team. However, for an issue to get traction, please report it as a github issue.
|
86
|
-
|
87
|
-
## Development on this Plugin
|
88
|
-
|
89
|
-
### Development Process
|
90
|
-
|
91
|
-
If you wish to contribute to this plugin, please use the usual fork-branch-push-PR cycle. All functional changes need new tests, and bugfixes are expected to include a new test that demonstrates the bug.
|
92
|
-
|
93
|
-
### Reference Information
|
94
|
-
|
95
|
-
[Plugin Development](https://github.com/inspec/train/blob/master/docs/dev/plugins.md) is documented on the `train` project on GitHub.
|
96
|
-
|
97
|
-
### Unit tests
|
98
|
-
|
99
|
-
Run `bundle exec rake test:unit` to run the unit tests.
|
100
|
-
|
101
|
-
### Testing changes against a Windows Machine
|
102
|
-
|
103
|
-
Install Vagrant and VirtualBox. Check the Vagrantfile to verify that it references a Windows 2016 evaluation VagrantBox to which you have access.
|
104
|
-
|
105
|
-
Then, run `bundle exec rake test:integration`. There are sub-tasks you can use to run only the integration tests; to see a list of all tasks, run `rake -aT`.
|
data/train-winrm.gemspec
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
# As plugins are usually packaged and distributed as a RubyGem,
|
2
|
-
# we have to provide a .gemspec file, which controls the gembuild
|
3
|
-
# and publish process. This is a fairly generic gemspec.
|
4
|
-
|
5
|
-
# It is traditional in a gemspec to dynamically load the current version
|
6
|
-
# from a file in the source tree. The next three lines make that happen.
|
7
|
-
lib = File.expand_path("../lib", __FILE__)
|
8
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
9
|
-
require "train-winrm/version"
|
10
|
-
|
11
|
-
Gem::Specification.new do |spec|
|
12
|
-
# Importantly, all Train plugins must be prefixed with `train-`
|
13
|
-
spec.name = "train-winrm"
|
14
|
-
|
15
|
-
# It is polite to namespace your plugin under InspecPlugins::YourPluginInCamelCase
|
16
|
-
spec.version = TrainPlugins::WinRM::VERSION
|
17
|
-
spec.authors = ["Chef InSpec Team"]
|
18
|
-
spec.email = ["inspec@chef.io"]
|
19
|
-
spec.summary = "Windows WinRM API Transport for Train"
|
20
|
-
spec.description = "Allows applictaions using Train to speak to Windows using Remote Management; handles authentication, cacheing, and SDK dependency management."
|
21
|
-
spec.homepage = "https://github.com/inspec/train-winrm"
|
22
|
-
spec.license = "Apache-2.0"
|
23
|
-
|
24
|
-
# Though complicated-looking, this is pretty standard for a gemspec.
|
25
|
-
# It just filters what will actually be packaged in the gem (leaving
|
26
|
-
# out tests, etc)
|
27
|
-
spec.files = %w{
|
28
|
-
README.md train-winrm.gemspec Gemfile
|
29
|
-
} + Dir.glob(
|
30
|
-
"lib/**/*", File::FNM_DOTMATCH
|
31
|
-
).reject { |f| File.directory?(f) }
|
32
|
-
spec.require_paths = ["lib"]
|
33
|
-
|
34
|
-
# If you rely on any other gems, list them here with any constraints.
|
35
|
-
# This is how `inspec plugin install` is able to manage your dependencies.
|
36
|
-
|
37
|
-
# If you only need certain gems during development or testing, list
|
38
|
-
# them in Gemfile, not here.
|
39
|
-
|
40
|
-
# Do not list inspec as a dependency of a train plugin.
|
41
|
-
# Do not list train or train-core as a dependency of a train plugin.
|
42
|
-
spec.add_dependency "winrm", "~> 2.0"
|
43
|
-
spec.add_dependency "winrm-fs", "~> 1.0"
|
44
|
-
end
|