knife-windows 0.5.10.rc.1 → 0.5.10
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.
- data/README.rdoc +9 -0
- data/knife-windows.gemspec +1 -1
- data/lib/chef/knife/bootstrap_windows_ssh.rb +4 -4
- data/lib/knife-windows/version.rb +1 -1
- metadata +55 -32
data/README.rdoc
CHANGED
|
@@ -85,6 +85,10 @@ This should be considered a legacy bootstrap template and will most likely be re
|
|
|
85
85
|
|
|
86
86
|
= REQUIREMENTS/SETUP:
|
|
87
87
|
|
|
88
|
+
== Ruby
|
|
89
|
+
|
|
90
|
+
Ruby 1.9.1+ is needed.
|
|
91
|
+
|
|
88
92
|
== Chef Version
|
|
89
93
|
|
|
90
94
|
Knife plugins require >= Chef 0.10. More details about Knife plugins can be {found on the Chef wiki}[http://wiki.opscode.com/display/chef/Knife+Plugins].
|
|
@@ -112,6 +116,11 @@ For development and testing purposes, unencrypted traffic with Basic authenticat
|
|
|
112
116
|
C:\Users\Administrator> winrm set winrm/config/service @{AllowUnencrypted="true"}
|
|
113
117
|
C:\Users\Administrator> winrm set winrm/config/service/auth @{Basic="true"}
|
|
114
118
|
|
|
119
|
+
= CONTRIBUTING:
|
|
120
|
+
|
|
121
|
+
Please file bugs against the KNIFE_WINDOWS project at http://tickets.opscode.com/browse/KNIFE_WINDOWS
|
|
122
|
+
|
|
123
|
+
More information on the contribution process for Opscode projects can be found at: http://wiki.opscode.com/display/chef/How+to+Contribute
|
|
115
124
|
= LICENSE:
|
|
116
125
|
|
|
117
126
|
Author:: Seth Chisamore (<schisamo@opscode.com>)
|
data/knife-windows.gemspec
CHANGED
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
s.description = s.summary
|
|
16
16
|
|
|
17
17
|
s.required_ruby_version = ">= 1.9.1"
|
|
18
|
-
s.add_dependency "em-winrm", "= 0.5.4
|
|
18
|
+
s.add_dependency "em-winrm", "= 0.5.4"
|
|
19
19
|
|
|
20
20
|
s.files = `git ls-files`.split("\n")
|
|
21
21
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
@@ -59,11 +59,11 @@ class Chef
|
|
|
59
59
|
:long => "--identity-file IDENTITY_FILE",
|
|
60
60
|
:description => "The SSH identity file used for authentication"
|
|
61
61
|
|
|
62
|
-
option :
|
|
63
|
-
:long => "--no-host-key-
|
|
62
|
+
option :host_key_verification,
|
|
63
|
+
:long => "--[no-]host-key-verification",
|
|
64
64
|
:description => "Disable host key verification",
|
|
65
65
|
:boolean => true,
|
|
66
|
-
:default =>
|
|
66
|
+
:default => true
|
|
67
67
|
|
|
68
68
|
def run
|
|
69
69
|
bootstrap
|
|
@@ -77,7 +77,7 @@ class Chef
|
|
|
77
77
|
ssh.config[:ssh_port] = locate_config_value(:ssh_port)
|
|
78
78
|
ssh.config[:identity_file] = config[:identity_file]
|
|
79
79
|
ssh.config[:manual] = true
|
|
80
|
-
ssh.config[:
|
|
80
|
+
ssh.config[:host_key_verify] = config[:host_key_verify]
|
|
81
81
|
ssh
|
|
82
82
|
end
|
|
83
83
|
|
metadata
CHANGED
|
@@ -1,37 +1,49 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-windows
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 5
|
|
9
|
+
- 10
|
|
10
|
+
version: 0.5.10
|
|
6
11
|
platform: ruby
|
|
7
|
-
authors:
|
|
12
|
+
authors:
|
|
8
13
|
- Seth Chisamore
|
|
9
14
|
autorequire:
|
|
10
15
|
bindir: bin
|
|
11
16
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
17
|
+
|
|
18
|
+
date: 2012-09-13 00:00:00 Z
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
15
21
|
name: em-winrm
|
|
16
|
-
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
17
24
|
none: false
|
|
18
|
-
requirements:
|
|
19
|
-
- - =
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
|
|
25
|
+
requirements:
|
|
26
|
+
- - "="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 3
|
|
29
|
+
segments:
|
|
30
|
+
- 0
|
|
31
|
+
- 5
|
|
32
|
+
- 4
|
|
33
|
+
version: 0.5.4
|
|
22
34
|
type: :runtime
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
with nodes running Microsoft Windows
|
|
27
|
-
email:
|
|
35
|
+
version_requirements: *id001
|
|
36
|
+
description: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting with nodes running Microsoft Windows
|
|
37
|
+
email:
|
|
28
38
|
- schisamo@opscode.com
|
|
29
39
|
executables: []
|
|
40
|
+
|
|
30
41
|
extensions: []
|
|
31
|
-
|
|
42
|
+
|
|
43
|
+
extra_rdoc_files:
|
|
32
44
|
- README.rdoc
|
|
33
45
|
- LICENSE
|
|
34
|
-
files:
|
|
46
|
+
files:
|
|
35
47
|
- .gitignore
|
|
36
48
|
- CHANGELOG
|
|
37
49
|
- Gemfile
|
|
@@ -50,27 +62,38 @@ files:
|
|
|
50
62
|
- lib/knife-windows/version.rb
|
|
51
63
|
homepage: https://github.com/opscode/knife-windows
|
|
52
64
|
licenses: []
|
|
65
|
+
|
|
53
66
|
post_install_message:
|
|
54
67
|
rdoc_options: []
|
|
55
|
-
|
|
68
|
+
|
|
69
|
+
require_paths:
|
|
56
70
|
- lib
|
|
57
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
72
|
none: false
|
|
59
|
-
requirements:
|
|
60
|
-
- -
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
hash: 49
|
|
77
|
+
segments:
|
|
78
|
+
- 1
|
|
79
|
+
- 9
|
|
80
|
+
- 1
|
|
62
81
|
version: 1.9.1
|
|
63
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
83
|
none: false
|
|
65
|
-
requirements:
|
|
66
|
-
- -
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
hash: 3
|
|
88
|
+
segments:
|
|
89
|
+
- 0
|
|
90
|
+
version: "0"
|
|
69
91
|
requirements: []
|
|
92
|
+
|
|
70
93
|
rubyforge_project:
|
|
71
94
|
rubygems_version: 1.8.10
|
|
72
95
|
signing_key:
|
|
73
96
|
specification_version: 3
|
|
74
|
-
summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
|
|
75
|
-
with nodes running Microsoft Windows
|
|
97
|
+
summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting with nodes running Microsoft Windows
|
|
76
98
|
test_files: []
|
|
99
|
+
|