knife-windows 0.5.6 → 0.5.8
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.
|
@@ -24,8 +24,8 @@ mkdir C:\chef
|
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
@rem Install Chef using chef-client MSI installer
|
|
27
|
-
cscript /nologo C:\chef\wget.vbs /url:http://
|
|
28
|
-
msiexec /qb /i %TEMP%\chef-client-
|
|
27
|
+
cscript /nologo C:\chef\wget.vbs /url:http://www.opscode.com/chef/install.msi /path:%TEMP%\chef-client-latest.msi
|
|
28
|
+
msiexec /qb /i %TEMP%\chef-client-latest.msi
|
|
29
29
|
|
|
30
30
|
> C:\chef\validation.pem (
|
|
31
31
|
<%= validation_key %>
|
|
@@ -26,9 +26,9 @@ class Chef
|
|
|
26
26
|
# following instance variables:
|
|
27
27
|
# * @config - a hash of knife's config values
|
|
28
28
|
# * @run_list - the run list for the node to boostrap
|
|
29
|
-
#
|
|
29
|
+
#
|
|
30
30
|
class WindowsBootstrapContext < BootstrapContext
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
def initialize(config, run_list, chef_config)
|
|
33
33
|
@config = config
|
|
34
34
|
@run_list = run_list
|
|
@@ -91,7 +91,7 @@ CONFIG
|
|
|
91
91
|
win_wget = <<-WGET
|
|
92
92
|
url = WScript.Arguments.Named("url")
|
|
93
93
|
path = WScript.Arguments.Named("path")
|
|
94
|
-
Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP
|
|
94
|
+
Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")
|
|
95
95
|
Set wshShell = CreateObject( "WScript.Shell" )
|
|
96
96
|
Set objUserVariables = wshShell.Environment("USER")
|
|
97
97
|
|
metadata
CHANGED
|
@@ -1,37 +1,39 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-windows
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.6
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
5
4
|
prerelease:
|
|
5
|
+
version: 0.5.8
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Seth Chisamore
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
|
|
13
|
+
date: 2011-12-15 00:00:00 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: em-winrm
|
|
16
|
-
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
17
19
|
none: false
|
|
18
|
-
requirements:
|
|
19
|
-
- - =
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
20
|
+
requirements:
|
|
21
|
+
- - "="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
21
23
|
version: 0.5.2
|
|
22
24
|
type: :runtime
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
with nodes running Microsoft Windows
|
|
27
|
-
email:
|
|
25
|
+
version_requirements: *id001
|
|
26
|
+
description: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting with nodes running Microsoft Windows
|
|
27
|
+
email:
|
|
28
28
|
- schisamo@opscode.com
|
|
29
29
|
executables: []
|
|
30
|
+
|
|
30
31
|
extensions: []
|
|
31
|
-
|
|
32
|
+
|
|
33
|
+
extra_rdoc_files:
|
|
32
34
|
- README.rdoc
|
|
33
35
|
- LICENSE
|
|
34
|
-
files:
|
|
36
|
+
files:
|
|
35
37
|
- .gitignore
|
|
36
38
|
- CHANGELOG
|
|
37
39
|
- Gemfile
|
|
@@ -50,27 +52,30 @@ files:
|
|
|
50
52
|
- lib/knife-windows/version.rb
|
|
51
53
|
homepage: https://github.com/opscode/knife-windows
|
|
52
54
|
licenses: []
|
|
55
|
+
|
|
53
56
|
post_install_message:
|
|
54
57
|
rdoc_options: []
|
|
55
|
-
|
|
58
|
+
|
|
59
|
+
require_paths:
|
|
56
60
|
- lib
|
|
57
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
62
|
none: false
|
|
59
|
-
requirements:
|
|
60
|
-
- -
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
62
66
|
version: 1.9.1
|
|
63
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
68
|
none: false
|
|
65
|
-
requirements:
|
|
66
|
-
- -
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: "0"
|
|
69
73
|
requirements: []
|
|
74
|
+
|
|
70
75
|
rubyforge_project:
|
|
71
|
-
rubygems_version: 1.8.
|
|
76
|
+
rubygems_version: 1.8.10
|
|
72
77
|
signing_key:
|
|
73
78
|
specification_version: 3
|
|
74
|
-
summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
|
|
75
|
-
with nodes running Microsoft Windows
|
|
79
|
+
summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting with nodes running Microsoft Windows
|
|
76
80
|
test_files: []
|
|
81
|
+
|