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: 3b17ce381407a7175445aff5770826bb9261b08ea1158cc5a7ffa688eb2c84ea
4
- data.tar.gz: ef4af029b47931d2710644d063b677c59d539e51104ab04faec7599e49abb92b
3
+ metadata.gz: 7ec67f70334f12f28372d9fede2f101b0fcae40e1b21784fb1b37547b57e786a
4
+ data.tar.gz: 5bb917517b1f716c03f4da10df0a93791b3640470d498b0b31c13aefacf1639b
5
5
  SHA512:
6
- metadata.gz: 82aaf0ae8009bab94b899d6b4adac64d530550de660979eac6daaf2d07929a1a5c328fe261dcb388f8a2e8b87da5f02b9c060f3863da0893275b0a0c28b80105
7
- data.tar.gz: 4165c86e5ac88d6753e257eb7824e9f0be3db689efe4fe972a07afe24956bd254b61d8a38c88f44fe8d64351266fb0eb39a3ae511b1fb7b3395713ec971aa684
6
+ metadata.gz: 437723f803d151bfe1c48bec3460154c04f4f7fed5df4114652a137fa4679bb411717e6e16d0ba4874cfdfb6b3139875a967439bfdc77d669cb4bcc7d9d73c78
7
+ data.tar.gz: fda1c549cbd948af2317f882c95d4466d84814f647e75445ea205ae929dd28daf68c46448f2da6dae3e0f31a1ab1dfb726a6bccda63cc8f2ee1165494ea9d16c
@@ -35,7 +35,7 @@ class Chef
35
35
  Chef::Knife::Bootstrap.load_deps
36
36
  end
37
37
 
38
- banner "knife bootstrap windows ssh FQDN (options)"
38
+ banner "knife bootstrap windows ssh FQDN (options) DEPRECATED"
39
39
 
40
40
  option :ssh_user,
41
41
  short: "-x USERNAME",
@@ -37,7 +37,7 @@ class Chef
37
37
  Chef::Knife::Bootstrap.load_deps
38
38
  end
39
39
 
40
- banner "knife bootstrap windows winrm FQDN (options)"
40
+ banner "knife bootstrap windows winrm FQDN (options) DEPRECATED"
41
41
 
42
42
  def run
43
43
  Chef::Application.fatal!(<<~EOM
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Windows
3
- VERSION = "3.0.13".freeze
3
+ VERSION = "3.0.14".freeze
4
4
  MAJOR, MINOR, TINY = VERSION.split(".")
5
5
  end
6
6
  end
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.13
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