knife-windows 3.0.13 → 3.0.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ec67f70334f12f28372d9fede2f101b0fcae40e1b21784fb1b37547b57e786a
|
4
|
+
data.tar.gz: 5bb917517b1f716c03f4da10df0a93791b3640470d498b0b31c13aefacf1639b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 437723f803d151bfe1c48bec3460154c04f4f7fed5df4114652a137fa4679bb411717e6e16d0ba4874cfdfb6b3139875a967439bfdc77d669cb4bcc7d9d73c78
|
7
|
+
data.tar.gz: fda1c549cbd948af2317f882c95d4466d84814f647e75445ea205ae929dd28daf68c46448f2da6dae3e0f31a1ab1dfb726a6bccda63cc8f2ee1165494ea9d16c
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-windows
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seth Chisamore
|
@@ -81,7 +81,6 @@ files:
|
|
81
81
|
- lib/chef/knife/knife_windows_base.rb
|
82
82
|
- lib/chef/knife/windows_cert_generate.rb
|
83
83
|
- lib/chef/knife/windows_cert_install.rb
|
84
|
-
- lib/chef/knife/windows_helper.rb
|
85
84
|
- lib/chef/knife/windows_listener_create.rb
|
86
85
|
- lib/chef/knife/winrm.rb
|
87
86
|
- lib/chef/knife/winrm_base.rb
|
@@ -1,33 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# Author:: Chirag Jog (<chirag@clogeny.com>)
|
3
|
-
# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
|
4
|
-
# License:: Apache License, Version 2.0
|
5
|
-
#
|
6
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
-
# you may not use this file except in compliance with the License.
|
8
|
-
# You may obtain a copy of the License at
|
9
|
-
#
|
10
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
-
#
|
12
|
-
# Unless required by applicable law or agreed to in writing, software
|
13
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
-
# See the License for the specific language governing permissions and
|
16
|
-
# limitations under the License.
|
17
|
-
#
|
18
|
-
|
19
|
-
require "chef/knife"
|
20
|
-
require_relative "bootstrap_windows_ssh"
|
21
|
-
require_relative "bootstrap_windows_winrm"
|
22
|
-
require_relative "winrm"
|
23
|
-
require_relative "wsman_test"
|
24
|
-
class Chef
|
25
|
-
class Knife
|
26
|
-
class WindowsHelper < Knife
|
27
|
-
banner "#{BootstrapWindowsWinrm.banner}\n" \
|
28
|
-
"#{BootstrapWindowsSsh.banner}\n" \
|
29
|
-
"#{Winrm.banner}\n" \
|
30
|
-
"#{WsmanTest.banner}"
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|