chef 11.0.0.beta.1 → 11.0.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- data/distro/common/html/chef-client.8.html +3 -3
- data/distro/common/html/chef-expander.8.html +3 -3
- data/distro/common/html/chef-expanderctl.8.html +3 -3
- data/distro/common/html/chef-server-webui.8.html +3 -3
- data/distro/common/html/chef-server.8.html +3 -3
- data/distro/common/html/chef-shell.1.html +3 -3
- data/distro/common/html/chef-solo.8.html +3 -3
- data/distro/common/html/chef-solr.8.html +3 -3
- data/distro/common/html/knife-bootstrap.1.html +3 -3
- data/distro/common/html/knife-client.1.html +3 -3
- data/distro/common/html/knife-configure.1.html +3 -3
- data/distro/common/html/knife-cookbook-site.1.html +3 -3
- data/distro/common/html/knife-cookbook.1.html +3 -3
- data/distro/common/html/knife-data-bag.1.html +3 -3
- data/distro/common/html/knife-environment.1.html +3 -3
- data/distro/common/html/knife-exec.1.html +3 -3
- data/distro/common/html/knife-index.1.html +3 -3
- data/distro/common/html/knife-node.1.html +3 -3
- data/distro/common/html/knife-role.1.html +3 -3
- data/distro/common/html/knife-search.1.html +3 -3
- data/distro/common/html/knife-ssh.1.html +3 -3
- data/distro/common/html/knife-status.1.html +3 -3
- data/distro/common/html/knife-tag.1.html +3 -3
- data/distro/common/html/knife.1.html +3 -3
- data/distro/common/man/man1/chef-shell.1 +1 -1
- data/distro/common/man/man1/knife-bootstrap.1 +1 -1
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +1 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +1 -1
- data/distro/common/man/man8/chef-expander.8 +1 -1
- data/distro/common/man/man8/chef-expanderctl.8 +1 -1
- data/distro/common/man/man8/chef-server-webui.8 +1 -1
- data/distro/common/man/man8/chef-server.8 +1 -1
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/distro/common/man/man8/chef-solr.8 +1 -1
- data/lib/chef/node.rb +5 -0
- data/lib/chef/node/attribute.rb +29 -0
- data/lib/chef/version.rb +1 -1
- data/spec/functional/resource/cookbook_file_spec.rb +1 -1
- data/spec/functional/resource/link_spec.rb +9 -9
- data/spec/support/chef_helpers.rb +1 -1
- data/spec/support/shared/functional/directory_resource.rb +1 -1
- data/spec/support/shared/functional/file_resource.rb +1 -1
- data/spec/unit/api_client/registration_spec.rb +1 -4
- data/spec/unit/node/attribute_spec.rb +31 -0
- data/spec/unit/node_spec.rb +45 -0
- metadata +1230 -1224
@@ -32,7 +32,7 @@ end
|
|
32
32
|
# From Ruby 1.9.2+
|
33
33
|
# Here for backwards compatibility with Ruby 1.8.7
|
34
34
|
# http://rubydoc.info/stdlib/tmpdir/1.9.2/Dir/Tmpname
|
35
|
-
def make_tmpname(prefix_suffix, n)
|
35
|
+
def make_tmpname(prefix_suffix, n = nil)
|
36
36
|
case prefix_suffix
|
37
37
|
when String
|
38
38
|
prefix = prefix_suffix
|
@@ -23,10 +23,7 @@ require 'chef/api_client/registration'
|
|
23
23
|
|
24
24
|
describe Chef::ApiClient::Registration do
|
25
25
|
let(:key_location) do
|
26
|
-
|
27
|
-
Tempfile.open("client-registration-key") {|f| path = f.path }
|
28
|
-
File.unlink(path)
|
29
|
-
path
|
26
|
+
make_tmpname("client-registration-key")
|
30
27
|
end
|
31
28
|
|
32
29
|
let(:registration) { Chef::ApiClient::Registration.new("silent-bob", key_location) }
|
@@ -247,6 +247,37 @@ describe Chef::Node::Attribute do
|
|
247
247
|
|
248
248
|
end
|
249
249
|
|
250
|
+
describe "when debugging attributes" do
|
251
|
+
before do
|
252
|
+
@attributes.default[:foo][:bar] = "default"
|
253
|
+
@attributes.env_default[:foo][:bar] = "env_default"
|
254
|
+
@attributes.role_default[:foo][:bar] = "role_default"
|
255
|
+
@attributes.force_default[:foo][:bar] = "force_default"
|
256
|
+
@attributes.normal[:foo][:bar] = "normal"
|
257
|
+
@attributes.override[:foo][:bar] = "override"
|
258
|
+
@attributes.role_override[:foo][:bar] = "role_override"
|
259
|
+
@attributes.env_override[:foo][:bar] = "env_override"
|
260
|
+
@attributes.force_override[:foo][:bar] = "force_override"
|
261
|
+
@attributes.automatic[:foo][:bar] = "automatic"
|
262
|
+
end
|
263
|
+
|
264
|
+
it "gives the value at each level of precedence for a path spec" do
|
265
|
+
expected = [["set_unless_enabled?", false],
|
266
|
+
["default", "default"],
|
267
|
+
["env_default", "env_default"],
|
268
|
+
["role_default", "role_default"],
|
269
|
+
["force_default", "force_default"],
|
270
|
+
["normal", "normal"],
|
271
|
+
["override", "override"],
|
272
|
+
["role_override", "role_override"],
|
273
|
+
["env_override", "env_override"],
|
274
|
+
["force_override", "force_override"],
|
275
|
+
["automatic", "automatic"]
|
276
|
+
]
|
277
|
+
@attributes.debug_value(:foo, :bar).should == expected
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
250
281
|
describe "when fetching values based on precedence" do
|
251
282
|
before do
|
252
283
|
@attributes.default["default"] = "cookbook default"
|
data/spec/unit/node_spec.rb
CHANGED
@@ -177,6 +177,21 @@ describe Chef::Node do
|
|
177
177
|
node[:snoopy][:is_a_puppy].should == true
|
178
178
|
end
|
179
179
|
|
180
|
+
it "should allow you to set a value after a set_unless" do
|
181
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
182
|
+
node.set_unless[:snoopy][:is_a_puppy] = false
|
183
|
+
node.set[:snoopy][:is_a_puppy] = true
|
184
|
+
node[:snoopy][:is_a_puppy].should == true
|
185
|
+
end
|
186
|
+
|
187
|
+
it "should let you set a value after a 'dangling' set_unless" do
|
188
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
189
|
+
node.set[:snoopy][:is_a_puppy] = "what"
|
190
|
+
node.set_unless[:snoopy][:is_a_puppy]
|
191
|
+
node.set[:snoopy][:is_a_puppy] = true
|
192
|
+
node[:snoopy][:is_a_puppy].should == true
|
193
|
+
end
|
194
|
+
|
180
195
|
it "auto-vivifies attributes created via method syntax" do
|
181
196
|
node.set.fuu.bahrr.baz = "qux"
|
182
197
|
node.fuu.bahrr.baz.should == "qux"
|
@@ -201,6 +216,21 @@ describe Chef::Node do
|
|
201
216
|
node[:snoopy][:is_a_puppy].should == true
|
202
217
|
end
|
203
218
|
|
219
|
+
it "should allow you to set a value after a default_unless" do
|
220
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
221
|
+
node.default_unless[:snoopy][:is_a_puppy] = false
|
222
|
+
node.default[:snoopy][:is_a_puppy] = true
|
223
|
+
node[:snoopy][:is_a_puppy].should == true
|
224
|
+
end
|
225
|
+
|
226
|
+
it "should allow you to set a value after a 'dangling' default_unless" do
|
227
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
228
|
+
node.default[:snoopy][:is_a_puppy] = "what"
|
229
|
+
node.default_unless[:snoopy][:is_a_puppy]
|
230
|
+
node.default[:snoopy][:is_a_puppy] = true
|
231
|
+
node[:snoopy][:is_a_puppy].should == true
|
232
|
+
end
|
233
|
+
|
204
234
|
it "auto-vivifies attributes created via method syntax" do
|
205
235
|
node.default.fuu.bahrr.baz = "qux"
|
206
236
|
node.fuu.bahrr.baz.should == "qux"
|
@@ -231,6 +261,21 @@ describe Chef::Node do
|
|
231
261
|
node[:snoopy][:is_a_puppy].should == true
|
232
262
|
end
|
233
263
|
|
264
|
+
it "should allow you to set a value after an override_unless" do
|
265
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
266
|
+
node.override_unless[:snoopy][:is_a_puppy] = false
|
267
|
+
node.override[:snoopy][:is_a_puppy] = true
|
268
|
+
node[:snoopy][:is_a_puppy].should == true
|
269
|
+
end
|
270
|
+
|
271
|
+
it "should allow you to set a value after a 'dangling' override_unless" do
|
272
|
+
# this tests for set_unless_present state bleeding between statements CHEF-3806
|
273
|
+
node.override_unless[:snoopy][:is_a_puppy] = "what"
|
274
|
+
node.override_unless[:snoopy][:is_a_puppy]
|
275
|
+
node.override[:snoopy][:is_a_puppy] = true
|
276
|
+
node[:snoopy][:is_a_puppy].should == true
|
277
|
+
end
|
278
|
+
|
234
279
|
it "auto-vivifies attributes created via method syntax" do
|
235
280
|
node.override.fuu.bahrr.baz = "qux"
|
236
281
|
node.fuu.bahrr.baz.should == "qux"
|
metadata
CHANGED
@@ -1,384 +1,378 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: -3286513896
|
5
5
|
prerelease: 7
|
6
|
+
segments:
|
7
|
+
- 11
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- beta
|
11
|
+
- 2
|
12
|
+
version: 11.0.0.beta.2
|
6
13
|
platform: ruby
|
7
|
-
authors:
|
14
|
+
authors:
|
8
15
|
- Adam Jacob
|
9
16
|
autorequire:
|
10
17
|
bindir: bin
|
11
18
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
19
|
+
|
20
|
+
date: 2013-01-31 00:00:00 Z
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
15
23
|
name: mixlib-config
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.1.2
|
22
|
-
type: :runtime
|
23
24
|
prerelease: false
|
24
|
-
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
26
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 23
|
31
|
+
segments:
|
32
|
+
- 1
|
33
|
+
- 1
|
34
|
+
- 2
|
29
35
|
version: 1.1.2
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: mixlib-cli
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ~>
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 1.3.0
|
38
36
|
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: mixlib-cli
|
39
40
|
prerelease: false
|
40
|
-
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
42
|
none: false
|
42
|
-
requirements:
|
43
|
+
requirements:
|
43
44
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
requirements:
|
51
|
-
- - ! '>='
|
52
|
-
- !ruby/object:Gem::Version
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 27
|
47
|
+
segments:
|
48
|
+
- 1
|
49
|
+
- 3
|
50
|
+
- 0
|
53
51
|
version: 1.3.0
|
54
52
|
type: :runtime
|
53
|
+
version_requirements: *id002
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: mixlib-log
|
55
56
|
prerelease: false
|
56
|
-
|
57
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
58
|
none: false
|
58
|
-
requirements:
|
59
|
-
- -
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
requirements:
|
67
|
-
- - ! '>='
|
68
|
-
- !ruby/object:Gem::Version
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 27
|
63
|
+
segments:
|
64
|
+
- 1
|
65
|
+
- 3
|
66
|
+
- 0
|
69
67
|
version: 1.3.0
|
70
68
|
type: :runtime
|
69
|
+
version_requirements: *id003
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: mixlib-authentication
|
71
72
|
prerelease: false
|
72
|
-
|
73
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
74
|
none: false
|
74
|
-
requirements:
|
75
|
-
- -
|
76
|
-
- !ruby/object:Gem::Version
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
hash: 27
|
79
|
+
segments:
|
80
|
+
- 1
|
81
|
+
- 3
|
82
|
+
- 0
|
77
83
|
version: 1.3.0
|
78
|
-
- !ruby/object:Gem::Dependency
|
79
|
-
name: mixlib-shellout
|
80
|
-
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
|
-
requirements:
|
83
|
-
- - ! '>='
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
version: '0'
|
86
84
|
type: :runtime
|
85
|
+
version_requirements: *id004
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: mixlib-shellout
|
87
88
|
prerelease: false
|
88
|
-
|
89
|
-
none: false
|
90
|
-
requirements:
|
91
|
-
- - ! '>='
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: '0'
|
94
|
-
- !ruby/object:Gem::Dependency
|
95
|
-
name: ohai
|
96
|
-
requirement: !ruby/object:Gem::Requirement
|
89
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
97
90
|
none: false
|
98
|
-
requirements:
|
99
|
-
- -
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
hash: 3
|
95
|
+
segments:
|
96
|
+
- 0
|
97
|
+
version: "0"
|
102
98
|
type: :runtime
|
99
|
+
version_requirements: *id005
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
name: ohai
|
103
102
|
prerelease: false
|
104
|
-
|
103
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
105
104
|
none: false
|
106
|
-
requirements:
|
107
|
-
- -
|
108
|
-
- !ruby/object:Gem::Version
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 7
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
- 6
|
112
|
+
- 0
|
109
113
|
version: 0.6.0
|
110
|
-
- !ruby/object:Gem::Dependency
|
111
|
-
name: rest-client
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
|
-
requirements:
|
115
|
-
- - ! '>='
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: 1.0.4
|
118
|
-
- - <
|
119
|
-
- !ruby/object:Gem::Version
|
120
|
-
version: 1.7.0
|
121
114
|
type: :runtime
|
115
|
+
version_requirements: *id006
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
name: rest-client
|
122
118
|
prerelease: false
|
123
|
-
|
119
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
124
120
|
none: false
|
125
|
-
requirements:
|
126
|
-
- -
|
127
|
-
- !ruby/object:Gem::Version
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 31
|
125
|
+
segments:
|
126
|
+
- 1
|
127
|
+
- 0
|
128
|
+
- 4
|
128
129
|
version: 1.0.4
|
129
130
|
- - <
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
hash: 11
|
133
|
+
segments:
|
134
|
+
- 1
|
135
|
+
- 7
|
136
|
+
- 0
|
131
137
|
version: 1.7.0
|
132
|
-
- !ruby/object:Gem::Dependency
|
133
|
-
name: json
|
134
|
-
requirement: !ruby/object:Gem::Requirement
|
135
|
-
none: false
|
136
|
-
requirements:
|
137
|
-
- - ! '>='
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: 1.4.4
|
140
|
-
- - <=
|
141
|
-
- !ruby/object:Gem::Version
|
142
|
-
version: 1.6.1
|
143
138
|
type: :runtime
|
139
|
+
version_requirements: *id007
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: json
|
144
142
|
prerelease: false
|
145
|
-
|
143
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
146
144
|
none: false
|
147
|
-
requirements:
|
148
|
-
- -
|
149
|
-
- !ruby/object:Gem::Version
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
hash: 15
|
149
|
+
segments:
|
150
|
+
- 1
|
151
|
+
- 4
|
152
|
+
- 4
|
150
153
|
version: 1.4.4
|
151
154
|
- - <=
|
152
|
-
- !ruby/object:Gem::Version
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 13
|
157
|
+
segments:
|
158
|
+
- 1
|
159
|
+
- 6
|
160
|
+
- 1
|
153
161
|
version: 1.6.1
|
154
|
-
- !ruby/object:Gem::Dependency
|
155
|
-
name: yajl-ruby
|
156
|
-
requirement: !ruby/object:Gem::Requirement
|
157
|
-
none: false
|
158
|
-
requirements:
|
159
|
-
- - ~>
|
160
|
-
- !ruby/object:Gem::Version
|
161
|
-
version: '1.1'
|
162
162
|
type: :runtime
|
163
|
+
version_requirements: *id008
|
164
|
+
- !ruby/object:Gem::Dependency
|
165
|
+
name: yajl-ruby
|
163
166
|
prerelease: false
|
164
|
-
|
165
|
-
none: false
|
166
|
-
requirements:
|
167
|
-
- - ~>
|
168
|
-
- !ruby/object:Gem::Version
|
169
|
-
version: '1.1'
|
170
|
-
- !ruby/object:Gem::Dependency
|
171
|
-
name: net-ssh
|
172
|
-
requirement: !ruby/object:Gem::Requirement
|
167
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
173
168
|
none: false
|
174
|
-
requirements:
|
169
|
+
requirements:
|
175
170
|
- - ~>
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
hash: 13
|
173
|
+
segments:
|
174
|
+
- 1
|
175
|
+
- 1
|
176
|
+
version: "1.1"
|
178
177
|
type: :runtime
|
178
|
+
version_requirements: *id009
|
179
|
+
- !ruby/object:Gem::Dependency
|
180
|
+
name: net-ssh
|
179
181
|
prerelease: false
|
180
|
-
|
182
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
181
183
|
none: false
|
182
|
-
requirements:
|
184
|
+
requirements:
|
183
185
|
- - ~>
|
184
|
-
- !ruby/object:Gem::Version
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
hash: 3
|
188
|
+
segments:
|
189
|
+
- 2
|
190
|
+
- 2
|
191
|
+
- 2
|
185
192
|
version: 2.2.2
|
186
|
-
- !ruby/object:Gem::Dependency
|
187
|
-
name: net-ssh-multi
|
188
|
-
requirement: !ruby/object:Gem::Requirement
|
189
|
-
none: false
|
190
|
-
requirements:
|
191
|
-
- - ~>
|
192
|
-
- !ruby/object:Gem::Version
|
193
|
-
version: 1.1.0
|
194
193
|
type: :runtime
|
194
|
+
version_requirements: *id010
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: net-ssh-multi
|
195
197
|
prerelease: false
|
196
|
-
|
198
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
197
199
|
none: false
|
198
|
-
requirements:
|
200
|
+
requirements:
|
199
201
|
- - ~>
|
200
|
-
- !ruby/object:Gem::Version
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
hash: 19
|
204
|
+
segments:
|
205
|
+
- 1
|
206
|
+
- 1
|
207
|
+
- 0
|
201
208
|
version: 1.1.0
|
202
|
-
- !ruby/object:Gem::Dependency
|
203
|
-
name: highline
|
204
|
-
requirement: !ruby/object:Gem::Requirement
|
205
|
-
none: false
|
206
|
-
requirements:
|
207
|
-
- - ! '>='
|
208
|
-
- !ruby/object:Gem::Version
|
209
|
-
version: 1.6.9
|
210
209
|
type: :runtime
|
210
|
+
version_requirements: *id011
|
211
|
+
- !ruby/object:Gem::Dependency
|
212
|
+
name: highline
|
211
213
|
prerelease: false
|
212
|
-
|
214
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
213
215
|
none: false
|
214
|
-
requirements:
|
215
|
-
- -
|
216
|
-
- !ruby/object:Gem::Version
|
216
|
+
requirements:
|
217
|
+
- - ">="
|
218
|
+
- !ruby/object:Gem::Version
|
219
|
+
hash: 29
|
220
|
+
segments:
|
221
|
+
- 1
|
222
|
+
- 6
|
223
|
+
- 9
|
217
224
|
version: 1.6.9
|
218
|
-
- !ruby/object:Gem::Dependency
|
219
|
-
name: erubis
|
220
|
-
requirement: !ruby/object:Gem::Requirement
|
221
|
-
none: false
|
222
|
-
requirements:
|
223
|
-
- - ! '>='
|
224
|
-
- !ruby/object:Gem::Version
|
225
|
-
version: '0'
|
226
225
|
type: :runtime
|
226
|
+
version_requirements: *id012
|
227
|
+
- !ruby/object:Gem::Dependency
|
228
|
+
name: erubis
|
227
229
|
prerelease: false
|
228
|
-
|
230
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
229
231
|
none: false
|
230
|
-
requirements:
|
231
|
-
- -
|
232
|
-
- !ruby/object:Gem::Version
|
233
|
-
|
234
|
-
|
232
|
+
requirements:
|
233
|
+
- - ">="
|
234
|
+
- !ruby/object:Gem::Version
|
235
|
+
hash: 3
|
236
|
+
segments:
|
237
|
+
- 0
|
238
|
+
version: "0"
|
239
|
+
type: :runtime
|
240
|
+
version_requirements: *id013
|
241
|
+
- !ruby/object:Gem::Dependency
|
235
242
|
name: rdoc
|
236
|
-
requirement: !ruby/object:Gem::Requirement
|
237
|
-
none: false
|
238
|
-
requirements:
|
239
|
-
- - ! '>='
|
240
|
-
- !ruby/object:Gem::Version
|
241
|
-
version: '0'
|
242
|
-
type: :development
|
243
243
|
prerelease: false
|
244
|
-
|
245
|
-
none: false
|
246
|
-
requirements:
|
247
|
-
- - ! '>='
|
248
|
-
- !ruby/object:Gem::Version
|
249
|
-
version: '0'
|
250
|
-
- !ruby/object:Gem::Dependency
|
251
|
-
name: sdoc
|
252
|
-
requirement: !ruby/object:Gem::Requirement
|
244
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
253
245
|
none: false
|
254
|
-
requirements:
|
255
|
-
- -
|
256
|
-
- !ruby/object:Gem::Version
|
257
|
-
|
246
|
+
requirements:
|
247
|
+
- - ">="
|
248
|
+
- !ruby/object:Gem::Version
|
249
|
+
hash: 3
|
250
|
+
segments:
|
251
|
+
- 0
|
252
|
+
version: "0"
|
258
253
|
type: :development
|
254
|
+
version_requirements: *id014
|
255
|
+
- !ruby/object:Gem::Dependency
|
256
|
+
name: sdoc
|
259
257
|
prerelease: false
|
260
|
-
|
261
|
-
none: false
|
262
|
-
requirements:
|
263
|
-
- - ! '>='
|
264
|
-
- !ruby/object:Gem::Version
|
265
|
-
version: '0'
|
266
|
-
- !ruby/object:Gem::Dependency
|
267
|
-
name: ronn
|
268
|
-
requirement: !ruby/object:Gem::Requirement
|
258
|
+
requirement: &id015 !ruby/object:Gem::Requirement
|
269
259
|
none: false
|
270
|
-
requirements:
|
271
|
-
- -
|
272
|
-
- !ruby/object:Gem::Version
|
273
|
-
|
260
|
+
requirements:
|
261
|
+
- - ">="
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
hash: 3
|
264
|
+
segments:
|
265
|
+
- 0
|
266
|
+
version: "0"
|
274
267
|
type: :development
|
268
|
+
version_requirements: *id015
|
269
|
+
- !ruby/object:Gem::Dependency
|
270
|
+
name: ronn
|
275
271
|
prerelease: false
|
276
|
-
|
277
|
-
none: false
|
278
|
-
requirements:
|
279
|
-
- - ! '>='
|
280
|
-
- !ruby/object:Gem::Version
|
281
|
-
version: '0'
|
282
|
-
- !ruby/object:Gem::Dependency
|
283
|
-
name: rake
|
284
|
-
requirement: !ruby/object:Gem::Requirement
|
272
|
+
requirement: &id016 !ruby/object:Gem::Requirement
|
285
273
|
none: false
|
286
|
-
requirements:
|
287
|
-
- -
|
288
|
-
- !ruby/object:Gem::Version
|
289
|
-
|
274
|
+
requirements:
|
275
|
+
- - ">="
|
276
|
+
- !ruby/object:Gem::Version
|
277
|
+
hash: 3
|
278
|
+
segments:
|
279
|
+
- 0
|
280
|
+
version: "0"
|
290
281
|
type: :development
|
282
|
+
version_requirements: *id016
|
283
|
+
- !ruby/object:Gem::Dependency
|
284
|
+
name: rake
|
291
285
|
prerelease: false
|
292
|
-
|
286
|
+
requirement: &id017 !ruby/object:Gem::Requirement
|
293
287
|
none: false
|
294
|
-
requirements:
|
295
|
-
- -
|
296
|
-
- !ruby/object:Gem::Version
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
none: false
|
302
|
-
requirements:
|
303
|
-
- - ! '>='
|
304
|
-
- !ruby/object:Gem::Version
|
305
|
-
version: '0'
|
288
|
+
requirements:
|
289
|
+
- - ">="
|
290
|
+
- !ruby/object:Gem::Version
|
291
|
+
hash: 3
|
292
|
+
segments:
|
293
|
+
- 0
|
294
|
+
version: "0"
|
306
295
|
type: :development
|
296
|
+
version_requirements: *id017
|
297
|
+
- !ruby/object:Gem::Dependency
|
298
|
+
name: rack
|
307
299
|
prerelease: false
|
308
|
-
|
309
|
-
none: false
|
310
|
-
requirements:
|
311
|
-
- - ! '>='
|
312
|
-
- !ruby/object:Gem::Version
|
313
|
-
version: '0'
|
314
|
-
- !ruby/object:Gem::Dependency
|
315
|
-
name: rspec_junit_formatter
|
316
|
-
requirement: !ruby/object:Gem::Requirement
|
300
|
+
requirement: &id018 !ruby/object:Gem::Requirement
|
317
301
|
none: false
|
318
|
-
requirements:
|
319
|
-
- -
|
320
|
-
- !ruby/object:Gem::Version
|
321
|
-
|
302
|
+
requirements:
|
303
|
+
- - ">="
|
304
|
+
- !ruby/object:Gem::Version
|
305
|
+
hash: 3
|
306
|
+
segments:
|
307
|
+
- 0
|
308
|
+
version: "0"
|
322
309
|
type: :development
|
310
|
+
version_requirements: *id018
|
311
|
+
- !ruby/object:Gem::Dependency
|
312
|
+
name: rspec_junit_formatter
|
323
313
|
prerelease: false
|
324
|
-
|
325
|
-
none: false
|
326
|
-
requirements:
|
327
|
-
- - ! '>='
|
328
|
-
- !ruby/object:Gem::Version
|
329
|
-
version: '0'
|
330
|
-
- !ruby/object:Gem::Dependency
|
331
|
-
name: rspec-core
|
332
|
-
requirement: !ruby/object:Gem::Requirement
|
314
|
+
requirement: &id019 !ruby/object:Gem::Requirement
|
333
315
|
none: false
|
334
|
-
requirements:
|
335
|
-
- -
|
336
|
-
- !ruby/object:Gem::Version
|
337
|
-
|
316
|
+
requirements:
|
317
|
+
- - ">="
|
318
|
+
- !ruby/object:Gem::Version
|
319
|
+
hash: 3
|
320
|
+
segments:
|
321
|
+
- 0
|
322
|
+
version: "0"
|
338
323
|
type: :development
|
324
|
+
version_requirements: *id019
|
325
|
+
- !ruby/object:Gem::Dependency
|
326
|
+
name: rspec-core
|
339
327
|
prerelease: false
|
340
|
-
|
341
|
-
none: false
|
342
|
-
requirements:
|
343
|
-
- - ~>
|
344
|
-
- !ruby/object:Gem::Version
|
345
|
-
version: 2.12.0
|
346
|
-
- !ruby/object:Gem::Dependency
|
347
|
-
name: rspec-expectations
|
348
|
-
requirement: !ruby/object:Gem::Requirement
|
328
|
+
requirement: &id020 !ruby/object:Gem::Requirement
|
349
329
|
none: false
|
350
|
-
requirements:
|
330
|
+
requirements:
|
351
331
|
- - ~>
|
352
|
-
- !ruby/object:Gem::Version
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
hash: 63
|
334
|
+
segments:
|
335
|
+
- 2
|
336
|
+
- 12
|
337
|
+
- 0
|
353
338
|
version: 2.12.0
|
354
339
|
type: :development
|
340
|
+
version_requirements: *id020
|
341
|
+
- !ruby/object:Gem::Dependency
|
342
|
+
name: rspec-expectations
|
355
343
|
prerelease: false
|
356
|
-
|
357
|
-
none: false
|
358
|
-
requirements:
|
359
|
-
- - ~>
|
360
|
-
- !ruby/object:Gem::Version
|
361
|
-
version: 2.12.0
|
362
|
-
- !ruby/object:Gem::Dependency
|
363
|
-
name: rspec-mocks
|
364
|
-
requirement: !ruby/object:Gem::Requirement
|
344
|
+
requirement: &id021 !ruby/object:Gem::Requirement
|
365
345
|
none: false
|
366
|
-
requirements:
|
346
|
+
requirements:
|
367
347
|
- - ~>
|
368
|
-
- !ruby/object:Gem::Version
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
hash: 63
|
350
|
+
segments:
|
351
|
+
- 2
|
352
|
+
- 12
|
353
|
+
- 0
|
369
354
|
version: 2.12.0
|
370
355
|
type: :development
|
356
|
+
version_requirements: *id021
|
357
|
+
- !ruby/object:Gem::Dependency
|
358
|
+
name: rspec-mocks
|
371
359
|
prerelease: false
|
372
|
-
|
360
|
+
requirement: &id022 !ruby/object:Gem::Requirement
|
373
361
|
none: false
|
374
|
-
requirements:
|
362
|
+
requirements:
|
375
363
|
- - ~>
|
376
|
-
- !ruby/object:Gem::Version
|
364
|
+
- !ruby/object:Gem::Version
|
365
|
+
hash: 63
|
366
|
+
segments:
|
367
|
+
- 2
|
368
|
+
- 12
|
369
|
+
- 0
|
377
370
|
version: 2.12.0
|
378
|
-
|
379
|
-
|
371
|
+
type: :development
|
372
|
+
version_requirements: *id022
|
373
|
+
description: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
|
380
374
|
email: adam@opscode.com
|
381
|
-
executables:
|
375
|
+
executables:
|
382
376
|
- chef-client
|
383
377
|
- chef-solo
|
384
378
|
- knife
|
@@ -386,1066 +380,1067 @@ executables:
|
|
386
380
|
- shef
|
387
381
|
- chef-apply
|
388
382
|
extensions: []
|
389
|
-
|
383
|
+
|
384
|
+
extra_rdoc_files:
|
390
385
|
- README.md
|
391
386
|
- CONTRIBUTING.md
|
392
387
|
- LICENSE
|
393
|
-
files:
|
388
|
+
files:
|
394
389
|
- Rakefile
|
395
390
|
- LICENSE
|
396
391
|
- README.md
|
397
392
|
- CONTRIBUTING.md
|
398
|
-
- distro/
|
399
|
-
- distro/arch/etc/conf.d/chef-expander.conf
|
400
|
-
- distro/arch/etc/conf.d/chef-server-webui.conf
|
401
|
-
- distro/arch/etc/conf.d/chef-server.conf
|
402
|
-
- distro/arch/etc/conf.d/chef-solr.conf
|
393
|
+
- distro/README
|
403
394
|
- distro/arch/etc/rc.d/chef-client
|
404
|
-
- distro/arch/etc/rc.d/chef-expander
|
405
395
|
- distro/arch/etc/rc.d/chef-server
|
406
|
-
- distro/arch/etc/rc.d/chef-server-webui
|
407
396
|
- distro/arch/etc/rc.d/chef-solr
|
408
|
-
- distro/
|
409
|
-
- distro/
|
410
|
-
- distro/
|
397
|
+
- distro/arch/etc/rc.d/chef-server-webui
|
398
|
+
- distro/arch/etc/rc.d/chef-expander
|
399
|
+
- distro/arch/etc/conf.d/chef-server.conf
|
400
|
+
- distro/arch/etc/conf.d/chef-expander.conf
|
401
|
+
- distro/arch/etc/conf.d/chef-client.conf
|
402
|
+
- distro/arch/etc/conf.d/chef-server-webui.conf
|
403
|
+
- distro/arch/etc/conf.d/chef-solr.conf
|
404
|
+
- distro/redhat/etc/init.d/chef-client
|
405
|
+
- distro/redhat/etc/init.d/chef-server
|
406
|
+
- distro/redhat/etc/init.d/chef-solr
|
407
|
+
- distro/redhat/etc/init.d/chef-server-webui
|
408
|
+
- distro/redhat/etc/init.d/chef-expander
|
409
|
+
- distro/redhat/etc/logrotate.d/chef-client
|
410
|
+
- distro/redhat/etc/logrotate.d/chef-server
|
411
|
+
- distro/redhat/etc/logrotate.d/chef-solr
|
412
|
+
- distro/redhat/etc/logrotate.d/chef-server-webui
|
413
|
+
- distro/redhat/etc/logrotate.d/chef-expander
|
414
|
+
- distro/redhat/etc/sysconfig/chef-client
|
415
|
+
- distro/redhat/etc/sysconfig/chef-server
|
416
|
+
- distro/redhat/etc/sysconfig/chef-solr
|
417
|
+
- distro/redhat/etc/sysconfig/chef-server-webui
|
418
|
+
- distro/redhat/etc/sysconfig/chef-expander
|
419
|
+
- distro/windows/service_manager.rb
|
420
|
+
- distro/debian/etc/init.d/chef-client
|
421
|
+
- distro/debian/etc/init.d/chef-server
|
422
|
+
- distro/debian/etc/init.d/chef-solr
|
423
|
+
- distro/debian/etc/init.d/chef-server-webui
|
424
|
+
- distro/debian/etc/init.d/chef-expander
|
425
|
+
- distro/debian/etc/default/chef-client
|
426
|
+
- distro/debian/etc/default/chef-server
|
427
|
+
- distro/debian/etc/default/chef-solr
|
428
|
+
- distro/debian/etc/default/chef-server-webui
|
429
|
+
- distro/debian/etc/default/chef-expander
|
430
|
+
- distro/debian/etc/init/chef-server.conf
|
431
|
+
- distro/debian/etc/init/chef-expander.conf
|
432
|
+
- distro/debian/etc/init/chef-client.conf
|
433
|
+
- distro/debian/etc/init/chef-server-webui.conf
|
434
|
+
- distro/debian/etc/init/chef-solr.conf
|
411
435
|
- distro/common/html/chef-server-webui.8.html
|
412
|
-
- distro/common/html/
|
413
|
-
- distro/common/html/
|
436
|
+
- distro/common/html/knife-ssh.1.html
|
437
|
+
- distro/common/html/knife.1.html
|
438
|
+
- distro/common/html/knife-tag.1.html
|
439
|
+
- distro/common/html/knife-node.1.html
|
440
|
+
- distro/common/html/chef-client.8.html
|
441
|
+
- distro/common/html/knife-role.1.html
|
414
442
|
- distro/common/html/chef-solo.8.html
|
415
|
-
- distro/common/html/chef-solr.8.html
|
416
|
-
- distro/common/html/knife-bootstrap.1.html
|
417
|
-
- distro/common/html/knife-client.1.html
|
418
|
-
- distro/common/html/knife-configure.1.html
|
419
|
-
- distro/common/html/knife-cookbook-site.1.html
|
420
443
|
- distro/common/html/knife-cookbook.1.html
|
444
|
+
- distro/common/html/knife-bootstrap.1.html
|
445
|
+
- distro/common/html/knife-index.1.html
|
446
|
+
- distro/common/html/knife-exec.1.html
|
421
447
|
- distro/common/html/knife-data-bag.1.html
|
448
|
+
- distro/common/html/chef-solr.8.html
|
449
|
+
- distro/common/html/knife-cookbook-site.1.html
|
450
|
+
- distro/common/html/knife-configure.1.html
|
422
451
|
- distro/common/html/knife-environment.1.html
|
423
|
-
- distro/common/html/knife-exec.1.html
|
424
|
-
- distro/common/html/knife-index.1.html
|
425
|
-
- distro/common/html/knife-node.1.html
|
426
|
-
- distro/common/html/knife-role.1.html
|
427
452
|
- distro/common/html/knife-search.1.html
|
428
|
-
- distro/common/html/
|
453
|
+
- distro/common/html/chef-expander.8.html
|
454
|
+
- distro/common/html/chef-server.8.html
|
455
|
+
- distro/common/html/chef-expanderctl.8.html
|
456
|
+
- distro/common/html/chef-shell.1.html
|
457
|
+
- distro/common/html/knife-client.1.html
|
429
458
|
- distro/common/html/knife-status.1.html
|
430
|
-
- distro/common/html/knife-tag.1.html
|
431
|
-
- distro/common/html/knife.1.html
|
432
|
-
- distro/common/man/man1/chef-shell.1
|
433
|
-
- distro/common/man/man1/knife-bootstrap.1
|
434
|
-
- distro/common/man/man1/knife-client.1
|
435
|
-
- distro/common/man/man1/knife-configure.1
|
436
|
-
- distro/common/man/man1/knife-cookbook-site.1
|
437
|
-
- distro/common/man/man1/knife-cookbook.1
|
438
|
-
- distro/common/man/man1/knife-data-bag.1
|
439
|
-
- distro/common/man/man1/knife-environment.1
|
440
|
-
- distro/common/man/man1/knife-exec.1
|
441
|
-
- distro/common/man/man1/knife-index.1
|
442
|
-
- distro/common/man/man1/knife-node.1
|
443
|
-
- distro/common/man/man1/knife-role.1
|
444
|
-
- distro/common/man/man1/knife-search.1
|
445
|
-
- distro/common/man/man1/knife-ssh.1
|
446
|
-
- distro/common/man/man1/knife-status.1
|
447
|
-
- distro/common/man/man1/knife-tag.1
|
448
|
-
- distro/common/man/man1/knife.1
|
449
|
-
- distro/common/man/man8/chef-client.8
|
450
|
-
- distro/common/man/man8/chef-expander.8
|
451
|
-
- distro/common/man/man8/chef-expanderctl.8
|
452
|
-
- distro/common/man/man8/chef-server-webui.8
|
453
|
-
- distro/common/man/man8/chef-server.8
|
454
|
-
- distro/common/man/man8/chef-solo.8
|
455
|
-
- distro/common/man/man8/chef-solr.8
|
456
|
-
- distro/common/markdown/man1/chef-shell.mkd
|
457
|
-
- distro/common/markdown/man1/knife-bootstrap.mkd
|
458
|
-
- distro/common/markdown/man1/knife-client.mkd
|
459
459
|
- distro/common/markdown/man1/knife-configure.mkd
|
460
|
-
- distro/common/markdown/man1/knife-
|
461
|
-
- distro/common/markdown/man1/knife
|
460
|
+
- distro/common/markdown/man1/knife-client.mkd
|
461
|
+
- distro/common/markdown/man1/knife.mkd
|
462
462
|
- distro/common/markdown/man1/knife-data-bag.mkd
|
463
|
+
- distro/common/markdown/man1/knife-cookbook-site.mkd
|
464
|
+
- distro/common/markdown/man1/knife-index.mkd
|
463
465
|
- distro/common/markdown/man1/knife-environment.mkd
|
466
|
+
- distro/common/markdown/man1/knife-status.mkd
|
464
467
|
- distro/common/markdown/man1/knife-exec.mkd
|
465
|
-
- distro/common/markdown/man1/knife-index.mkd
|
466
|
-
- distro/common/markdown/man1/knife-node.mkd
|
467
468
|
- distro/common/markdown/man1/knife-role.mkd
|
469
|
+
- distro/common/markdown/man1/knife-cookbook.mkd
|
468
470
|
- distro/common/markdown/man1/knife-search.mkd
|
469
471
|
- distro/common/markdown/man1/knife-ssh.mkd
|
470
|
-
- distro/common/markdown/man1/knife-
|
472
|
+
- distro/common/markdown/man1/knife-bootstrap.mkd
|
473
|
+
- distro/common/markdown/man1/chef-shell.mkd
|
471
474
|
- distro/common/markdown/man1/knife-tag.mkd
|
472
|
-
- distro/common/markdown/man1/knife.mkd
|
475
|
+
- distro/common/markdown/man1/knife-node.mkd
|
476
|
+
- distro/common/markdown/README
|
477
|
+
- distro/common/markdown/man8/chef-solo.mkd
|
478
|
+
- distro/common/markdown/man8/chef-solr.mkd
|
479
|
+
- distro/common/markdown/man8/chef-server.mkd
|
473
480
|
- distro/common/markdown/man8/chef-client.mkd
|
481
|
+
- distro/common/markdown/man8/chef-server-webui.mkd
|
474
482
|
- distro/common/markdown/man8/chef-expander.mkd
|
475
483
|
- distro/common/markdown/man8/chef-expanderctl.mkd
|
476
|
-
- distro/common/
|
477
|
-
- distro/common/
|
478
|
-
- distro/common/
|
479
|
-
- distro/common/
|
480
|
-
- distro/common/
|
481
|
-
- distro/
|
482
|
-
- distro/
|
483
|
-
- distro/
|
484
|
-
- distro/
|
485
|
-
- distro/
|
486
|
-
- distro/
|
487
|
-
- distro/
|
488
|
-
- distro/
|
489
|
-
- distro/
|
490
|
-
- distro/
|
491
|
-
- distro/
|
492
|
-
- distro/
|
493
|
-
- distro/
|
494
|
-
- distro/
|
495
|
-
- distro/
|
496
|
-
- distro/
|
497
|
-
- distro/
|
498
|
-
- distro/
|
499
|
-
- distro/
|
500
|
-
-
|
501
|
-
-
|
502
|
-
-
|
503
|
-
-
|
504
|
-
-
|
505
|
-
-
|
506
|
-
-
|
507
|
-
-
|
508
|
-
-
|
509
|
-
-
|
510
|
-
-
|
511
|
-
-
|
512
|
-
-
|
513
|
-
- lib/chef/
|
514
|
-
- lib/chef/
|
515
|
-
- lib/chef/
|
516
|
-
- lib/chef/
|
517
|
-
- lib/chef/
|
518
|
-
- lib/chef/
|
519
|
-
- lib/chef/
|
520
|
-
- lib/chef/
|
484
|
+
- distro/common/man/man1/knife-cookbook-site.1
|
485
|
+
- distro/common/man/man1/knife-node.1
|
486
|
+
- distro/common/man/man1/knife-configure.1
|
487
|
+
- distro/common/man/man1/knife-bootstrap.1
|
488
|
+
- distro/common/man/man1/knife-ssh.1
|
489
|
+
- distro/common/man/man1/knife-cookbook.1
|
490
|
+
- distro/common/man/man1/knife-search.1
|
491
|
+
- distro/common/man/man1/knife-tag.1
|
492
|
+
- distro/common/man/man1/knife-index.1
|
493
|
+
- distro/common/man/man1/chef-shell.1
|
494
|
+
- distro/common/man/man1/knife-status.1
|
495
|
+
- distro/common/man/man1/knife.1
|
496
|
+
- distro/common/man/man1/knife-role.1
|
497
|
+
- distro/common/man/man1/knife-data-bag.1
|
498
|
+
- distro/common/man/man1/knife-environment.1
|
499
|
+
- distro/common/man/man1/knife-exec.1
|
500
|
+
- distro/common/man/man1/knife-client.1
|
501
|
+
- distro/common/man/man8/chef-solo.8
|
502
|
+
- distro/common/man/man8/chef-server-webui.8
|
503
|
+
- distro/common/man/man8/chef-client.8
|
504
|
+
- distro/common/man/man8/chef-solr.8
|
505
|
+
- distro/common/man/man8/chef-expander.8
|
506
|
+
- distro/common/man/man8/chef-server.8
|
507
|
+
- distro/common/man/man8/chef-expanderctl.8
|
508
|
+
- lib/chef.rb
|
509
|
+
- lib/chef/resource_reporter.rb
|
510
|
+
- lib/chef/resource_definition_list.rb
|
511
|
+
- lib/chef/rest.rb
|
512
|
+
- lib/chef/resource_collection.rb
|
513
|
+
- lib/chef/api_client/registration.rb
|
514
|
+
- lib/chef/file_access_control/windows.rb
|
515
|
+
- lib/chef/file_access_control/unix.rb
|
516
|
+
- lib/chef/resource_collection/stepable_iterator.rb
|
517
|
+
- lib/chef/rest/cookie_jar.rb
|
518
|
+
- lib/chef/rest/auth_credentials.rb
|
519
|
+
- lib/chef/rest/rest_request.rb
|
520
|
+
- lib/chef/file_access_control.rb
|
521
|
+
- lib/chef/shef/ext.rb
|
522
|
+
- lib/chef/dsl.rb
|
523
|
+
- lib/chef/sandbox.rb
|
524
|
+
- lib/chef/knife.rb
|
525
|
+
- lib/chef/cookbook_version.rb
|
526
|
+
- lib/chef/shell/shell_rest.rb
|
527
|
+
- lib/chef/shell/shell_session.rb
|
528
|
+
- lib/chef/shell/ext.rb
|
529
|
+
- lib/chef/shell/model_wrapper.rb
|
521
530
|
- lib/chef/application.rb
|
522
|
-
- lib/chef/
|
523
|
-
- lib/chef/
|
524
|
-
- lib/chef/checksum/storage.rb
|
525
|
-
- lib/chef/chef_fs/command_line.rb
|
531
|
+
- lib/chef/run_context/cookbook_compiler.rb
|
532
|
+
- lib/chef/cookbook_uploader.rb
|
526
533
|
- lib/chef/chef_fs/file_pattern.rb
|
527
|
-
- lib/chef/chef_fs/
|
528
|
-
- lib/chef/chef_fs/
|
534
|
+
- lib/chef/chef_fs/knife.rb
|
535
|
+
- lib/chef/chef_fs/path_utils.rb
|
529
536
|
- lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb
|
530
|
-
- lib/chef/chef_fs/file_system/
|
537
|
+
- lib/chef/chef_fs/file_system/must_delete_recursively_error.rb
|
531
538
|
- lib/chef/chef_fs/file_system/chef_server_root_dir.rb
|
532
|
-
- lib/chef/chef_fs/file_system/
|
533
|
-
- lib/chef/chef_fs/file_system/
|
534
|
-
- lib/chef/chef_fs/file_system/cookbook_subdir.rb
|
539
|
+
- lib/chef/chef_fs/file_system/data_bags_dir.rb
|
540
|
+
- lib/chef/chef_fs/file_system/chef_repository_file_system_root_dir.rb
|
535
541
|
- lib/chef/chef_fs/file_system/cookbooks_dir.rb
|
542
|
+
- lib/chef/chef_fs/file_system/cookbook_subdir.rb
|
543
|
+
- lib/chef/chef_fs/file_system/base_fs_dir.rb
|
536
544
|
- lib/chef/chef_fs/file_system/data_bag_dir.rb
|
537
|
-
- lib/chef/chef_fs/file_system/data_bag_item.rb
|
538
|
-
- lib/chef/chef_fs/file_system/data_bags_dir.rb
|
539
|
-
- lib/chef/chef_fs/file_system/file_system_entry.rb
|
540
|
-
- lib/chef/chef_fs/file_system/file_system_error.rb
|
541
|
-
- lib/chef/chef_fs/file_system/file_system_root_dir.rb
|
542
|
-
- lib/chef/chef_fs/file_system/must_delete_recursively_error.rb
|
543
|
-
- lib/chef/chef_fs/file_system/nodes_dir.rb
|
544
545
|
- lib/chef/chef_fs/file_system/nonexistent_fs_object.rb
|
546
|
+
- lib/chef/chef_fs/file_system/file_system_root_dir.rb
|
545
547
|
- lib/chef/chef_fs/file_system/not_found_error.rb
|
546
|
-
- lib/chef/chef_fs/file_system/
|
548
|
+
- lib/chef/chef_fs/file_system/nodes_dir.rb
|
549
|
+
- lib/chef/chef_fs/file_system/file_system_error.rb
|
550
|
+
- lib/chef/chef_fs/file_system/data_bag_item.rb
|
551
|
+
- lib/chef/chef_fs/file_system/cookbook_file.rb
|
547
552
|
- lib/chef/chef_fs/file_system/rest_list_entry.rb
|
553
|
+
- lib/chef/chef_fs/file_system/file_system_entry.rb
|
554
|
+
- lib/chef/chef_fs/file_system/rest_list_dir.rb
|
555
|
+
- lib/chef/chef_fs/file_system/base_fs_object.rb
|
556
|
+
- lib/chef/chef_fs/file_system/cookbook_dir.rb
|
548
557
|
- lib/chef/chef_fs/file_system.rb
|
549
|
-
- lib/chef/chef_fs/
|
550
|
-
- lib/chef/
|
551
|
-
- lib/chef/
|
558
|
+
- lib/chef/chef_fs/command_line.rb
|
559
|
+
- lib/chef/run_list.rb
|
560
|
+
- lib/chef/platform.rb
|
561
|
+
- lib/chef/applications.rb
|
562
|
+
- lib/chef/nil_argument.rb
|
563
|
+
- lib/chef/checksum/storage/filesystem.rb
|
564
|
+
- lib/chef/checksum/storage.rb
|
552
565
|
- lib/chef/client.rb
|
553
|
-
- lib/chef/config.rb
|
554
|
-
- lib/chef/cookbook/chefignore.rb
|
555
|
-
- lib/chef/cookbook/cookbook_collection.rb
|
556
|
-
- lib/chef/cookbook/cookbook_version_loader.rb
|
557
|
-
- lib/chef/cookbook/file_system_file_vendor.rb
|
558
|
-
- lib/chef/cookbook/file_vendor.rb
|
559
|
-
- lib/chef/cookbook/metadata.rb
|
560
|
-
- lib/chef/cookbook/remote_file_vendor.rb
|
561
|
-
- lib/chef/cookbook/synchronizer.rb
|
562
|
-
- lib/chef/cookbook/syntax_check.rb
|
563
|
-
- lib/chef/cookbook_loader.rb
|
564
|
-
- lib/chef/cookbook_site_streaming_uploader.rb
|
565
|
-
- lib/chef/cookbook_uploader.rb
|
566
|
-
- lib/chef/cookbook_version.rb
|
567
|
-
- lib/chef/daemon.rb
|
568
|
-
- lib/chef/data_bag.rb
|
569
|
-
- lib/chef/data_bag_item.rb
|
570
|
-
- lib/chef/digester.rb
|
571
566
|
- lib/chef/dsl/data_query.rb
|
572
567
|
- lib/chef/dsl/include_attribute.rb
|
573
|
-
- lib/chef/dsl/include_recipe.rb
|
574
|
-
- lib/chef/dsl/platform_introspection.rb
|
575
568
|
- lib/chef/dsl/recipe.rb
|
569
|
+
- lib/chef/dsl/platform_introspection.rb
|
576
570
|
- lib/chef/dsl/registry_helper.rb
|
577
|
-
- lib/chef/dsl.rb
|
578
|
-
- lib/chef/
|
579
|
-
- lib/chef/
|
580
|
-
- lib/chef/
|
581
|
-
- lib/chef/
|
582
|
-
- lib/chef/
|
583
|
-
- lib/chef/
|
584
|
-
- lib/chef/
|
585
|
-
- lib/chef/
|
586
|
-
- lib/chef/
|
571
|
+
- lib/chef/dsl/include_recipe.rb
|
572
|
+
- lib/chef/monkey_patches/regexp.rb
|
573
|
+
- lib/chef/monkey_patches/numeric.rb
|
574
|
+
- lib/chef/monkey_patches/net_http.rb
|
575
|
+
- lib/chef/monkey_patches/dir.rb
|
576
|
+
- lib/chef/monkey_patches/fileutils.rb
|
577
|
+
- lib/chef/monkey_patches/tempfile.rb
|
578
|
+
- lib/chef/monkey_patches/object.rb
|
579
|
+
- lib/chef/monkey_patches/string.rb
|
580
|
+
- lib/chef/version.rb
|
581
|
+
- lib/chef/run_lock.rb
|
582
|
+
- lib/chef/runner.rb
|
583
|
+
- lib/chef/handler/json_file.rb
|
584
|
+
- lib/chef/handler/error_report.rb
|
585
|
+
- lib/chef/json_compat.rb
|
586
|
+
- lib/chef/mixins.rb
|
587
|
+
- lib/chef/streaming_cookbook_uploader.rb
|
588
|
+
- lib/chef/shell.rb
|
589
|
+
- lib/chef/scan_access_control.rb
|
587
590
|
- lib/chef/formatters/base.rb
|
588
591
|
- lib/chef/formatters/doc.rb
|
589
|
-
- lib/chef/formatters/
|
592
|
+
- lib/chef/formatters/minimal.rb
|
590
593
|
- lib/chef/formatters/error_inspectors/api_error_formatting.rb
|
591
|
-
- lib/chef/formatters/error_inspectors/
|
594
|
+
- lib/chef/formatters/error_inspectors/resource_failure_inspector.rb
|
592
595
|
- lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb
|
593
|
-
- lib/chef/formatters/error_inspectors/cookbook_sync_error_inspector.rb
|
594
|
-
- lib/chef/formatters/error_inspectors/node_load_error_inspector.rb
|
595
596
|
- lib/chef/formatters/error_inspectors/registration_error_inspector.rb
|
596
|
-
- lib/chef/formatters/error_inspectors/resource_failure_inspector.rb
|
597
597
|
- lib/chef/formatters/error_inspectors/run_list_expansion_error_inspector.rb
|
598
|
-
- lib/chef/formatters/error_inspectors.rb
|
598
|
+
- lib/chef/formatters/error_inspectors/cookbook_sync_error_inspector.rb
|
599
|
+
- lib/chef/formatters/error_inspectors/compile_error_inspector.rb
|
600
|
+
- lib/chef/formatters/error_inspectors/node_load_error_inspector.rb
|
599
601
|
- lib/chef/formatters/error_mapper.rb
|
600
|
-
- lib/chef/formatters/
|
601
|
-
- lib/chef/
|
602
|
-
- lib/chef/
|
602
|
+
- lib/chef/formatters/error_descriptor.rb
|
603
|
+
- lib/chef/formatters/error_inspectors.rb
|
604
|
+
- lib/chef/chef_fs.rb
|
605
|
+
- lib/chef/run_list/run_list_item.rb
|
606
|
+
- lib/chef/run_list/versioned_recipe_list.rb
|
607
|
+
- lib/chef/run_list/run_list_expansion.rb
|
608
|
+
- lib/chef/resource_definition.rb
|
609
|
+
- lib/chef/node.rb
|
610
|
+
- lib/chef/mash.rb
|
611
|
+
- lib/chef/encrypted_data_bag_item.rb
|
612
|
+
- lib/chef/tasks/chef_repo.rake
|
613
|
+
- lib/chef/daemon.rb
|
614
|
+
- lib/chef/data_bag.rb
|
615
|
+
- lib/chef/file_cache.rb
|
616
|
+
- lib/chef/recipe.rb
|
617
|
+
- lib/chef/config.rb
|
618
|
+
- lib/chef/log.rb
|
619
|
+
- lib/chef/version_class.rb
|
620
|
+
- lib/chef/resources.rb
|
621
|
+
- lib/chef/node/attribute.rb
|
622
|
+
- lib/chef/node/immutable_collections.rb
|
623
|
+
- lib/chef/node/attribute_collections.rb
|
624
|
+
- lib/chef/providers.rb
|
625
|
+
- lib/chef/exceptions.rb
|
626
|
+
- lib/chef/win32/error.rb
|
627
|
+
- lib/chef/win32/unicode.rb
|
628
|
+
- lib/chef/win32/file.rb
|
629
|
+
- lib/chef/win32/security/sid.rb
|
630
|
+
- lib/chef/win32/security/securable_object.rb
|
631
|
+
- lib/chef/win32/security/token.rb
|
632
|
+
- lib/chef/win32/security/ace.rb
|
633
|
+
- lib/chef/win32/security/acl.rb
|
634
|
+
- lib/chef/win32/security/security_descriptor.rb
|
635
|
+
- lib/chef/win32/memory.rb
|
636
|
+
- lib/chef/win32/version.rb
|
637
|
+
- lib/chef/win32/registry.rb
|
638
|
+
- lib/chef/win32/api/error.rb
|
639
|
+
- lib/chef/win32/api/unicode.rb
|
640
|
+
- lib/chef/win32/api/file.rb
|
641
|
+
- lib/chef/win32/api/memory.rb
|
642
|
+
- lib/chef/win32/api/psapi.rb
|
643
|
+
- lib/chef/win32/api/security.rb
|
644
|
+
- lib/chef/win32/api/process.rb
|
645
|
+
- lib/chef/win32/api/system.rb
|
646
|
+
- lib/chef/win32/handle.rb
|
647
|
+
- lib/chef/win32/file/info.rb
|
648
|
+
- lib/chef/win32/api.rb
|
649
|
+
- lib/chef/win32/security.rb
|
650
|
+
- lib/chef/win32/process.rb
|
651
|
+
- lib/chef/mixin/xml_escape.rb
|
652
|
+
- lib/chef/mixin/language_include_attribute.rb
|
653
|
+
- lib/chef/mixin/convert_to_class_name.rb
|
654
|
+
- lib/chef/mixin/path_sanity.rb
|
655
|
+
- lib/chef/mixin/get_source_from_package.rb
|
656
|
+
- lib/chef/mixin/recipe_definition_dsl_core.rb
|
657
|
+
- lib/chef/mixin/enforce_ownership_and_permissions.rb
|
658
|
+
- lib/chef/mixin/checksum.rb
|
659
|
+
- lib/chef/mixin/securable.rb
|
660
|
+
- lib/chef/mixin/command.rb
|
661
|
+
- lib/chef/mixin/deprecation.rb
|
662
|
+
- lib/chef/mixin/language_include_recipe.rb
|
663
|
+
- lib/chef/mixin/file_class.rb
|
664
|
+
- lib/chef/mixin/language.rb
|
665
|
+
- lib/chef/mixin/create_path.rb
|
666
|
+
- lib/chef/mixin/template.rb
|
667
|
+
- lib/chef/mixin/shell_out.rb
|
668
|
+
- lib/chef/mixin/from_file.rb
|
669
|
+
- lib/chef/mixin/params_validate.rb
|
670
|
+
- lib/chef/mixin/why_run.rb
|
671
|
+
- lib/chef/mixin/deep_merge.rb
|
672
|
+
- lib/chef/mixin/command/windows.rb
|
673
|
+
- lib/chef/mixin/command/unix.rb
|
674
|
+
- lib/chef/environment.rb
|
675
|
+
- lib/chef/provider.rb
|
676
|
+
- lib/chef/digester.rb
|
677
|
+
- lib/chef/cookbook/chefignore.rb
|
678
|
+
- lib/chef/cookbook/file_system_file_vendor.rb
|
679
|
+
- lib/chef/cookbook/file_vendor.rb
|
680
|
+
- lib/chef/cookbook/cookbook_collection.rb
|
681
|
+
- lib/chef/cookbook/syntax_check.rb
|
682
|
+
- lib/chef/cookbook/metadata.rb
|
683
|
+
- lib/chef/cookbook/synchronizer.rb
|
684
|
+
- lib/chef/cookbook/cookbook_version_loader.rb
|
685
|
+
- lib/chef/cookbook/remote_file_vendor.rb
|
686
|
+
- lib/chef/util/file_edit.rb
|
687
|
+
- lib/chef/util/windows/net_user.rb
|
688
|
+
- lib/chef/util/windows/net_use.rb
|
689
|
+
- lib/chef/util/windows/volume.rb
|
690
|
+
- lib/chef/util/windows/net_group.rb
|
691
|
+
- lib/chef/util/windows.rb
|
692
|
+
- lib/chef/run_status.rb
|
693
|
+
- lib/chef/version_constraint.rb
|
603
694
|
- lib/chef/handler.rb
|
604
|
-
- lib/chef/
|
605
|
-
- lib/chef/
|
606
|
-
- lib/chef/
|
607
|
-
- lib/chef/
|
608
|
-
- lib/chef/
|
609
|
-
- lib/chef/
|
610
|
-
- lib/chef/
|
611
|
-
- lib/chef/
|
612
|
-
- lib/chef/
|
613
|
-
- lib/chef/
|
695
|
+
- lib/chef/shell_out.rb
|
696
|
+
- lib/chef/run_context.rb
|
697
|
+
- lib/chef/event_dispatch/base.rb
|
698
|
+
- lib/chef/event_dispatch/dispatcher.rb
|
699
|
+
- lib/chef/resource.rb
|
700
|
+
- lib/chef/reserved_names.rb
|
701
|
+
- lib/chef/cookbook_loader.rb
|
702
|
+
- lib/chef/data_bag_item.rb
|
703
|
+
- lib/chef/cookbook_site_streaming_uploader.rb
|
704
|
+
- lib/chef/resource_platform_map.rb
|
705
|
+
- lib/chef/role.rb
|
706
|
+
- lib/chef/provider/file.rb
|
707
|
+
- lib/chef/provider/http_request.rb
|
708
|
+
- lib/chef/provider/route.rb
|
709
|
+
- lib/chef/provider/ruby_block.rb
|
710
|
+
- lib/chef/provider/directory.rb
|
711
|
+
- lib/chef/provider/breakpoint.rb
|
712
|
+
- lib/chef/provider/subversion.rb
|
713
|
+
- lib/chef/provider/env.rb
|
714
|
+
- lib/chef/provider/link.rb
|
715
|
+
- lib/chef/provider/lwrp_base.rb
|
716
|
+
- lib/chef/provider/deploy/timestamped.rb
|
717
|
+
- lib/chef/provider/deploy/revision.rb
|
718
|
+
- lib/chef/provider/script.rb
|
719
|
+
- lib/chef/provider/log.rb
|
720
|
+
- lib/chef/provider/remote_directory.rb
|
721
|
+
- lib/chef/provider/user/useradd.rb
|
722
|
+
- lib/chef/provider/user/windows.rb
|
723
|
+
- lib/chef/provider/user/dscl.rb
|
724
|
+
- lib/chef/provider/user/pw.rb
|
725
|
+
- lib/chef/provider/erl_call.rb
|
726
|
+
- lib/chef/provider/mount/windows.rb
|
727
|
+
- lib/chef/provider/mount/mount.rb
|
728
|
+
- lib/chef/provider/template_finder.rb
|
729
|
+
- lib/chef/provider/registry_key.rb
|
730
|
+
- lib/chef/provider/ifconfig.rb
|
731
|
+
- lib/chef/provider/cron/solaris.rb
|
732
|
+
- lib/chef/provider/service/init.rb
|
733
|
+
- lib/chef/provider/service/insserv.rb
|
734
|
+
- lib/chef/provider/service/arch.rb
|
735
|
+
- lib/chef/provider/service/upstart.rb
|
736
|
+
- lib/chef/provider/service/systemd.rb
|
737
|
+
- lib/chef/provider/service/simple.rb
|
738
|
+
- lib/chef/provider/service/solaris.rb
|
739
|
+
- lib/chef/provider/service/windows.rb
|
740
|
+
- lib/chef/provider/service/redhat.rb
|
741
|
+
- lib/chef/provider/service/invokercd.rb
|
742
|
+
- lib/chef/provider/service/debian.rb
|
743
|
+
- lib/chef/provider/service/freebsd.rb
|
744
|
+
- lib/chef/provider/service/macosx.rb
|
745
|
+
- lib/chef/provider/service/gentoo.rb
|
746
|
+
- lib/chef/provider/group.rb
|
747
|
+
- lib/chef/provider/remote_file.rb
|
748
|
+
- lib/chef/provider/template.rb
|
749
|
+
- lib/chef/provider/resource_update.rb
|
750
|
+
- lib/chef/provider/deploy.rb
|
751
|
+
- lib/chef/provider/env/windows.rb
|
752
|
+
- lib/chef/provider/mdadm.rb
|
753
|
+
- lib/chef/provider/mount.rb
|
754
|
+
- lib/chef/provider/package/pacman.rb
|
755
|
+
- lib/chef/provider/package/yum.rb
|
756
|
+
- lib/chef/provider/package/smartos.rb
|
757
|
+
- lib/chef/provider/package/easy_install.rb
|
758
|
+
- lib/chef/provider/package/solaris.rb
|
759
|
+
- lib/chef/provider/package/zypper.rb
|
760
|
+
- lib/chef/provider/package/dpkg.rb
|
761
|
+
- lib/chef/provider/package/rpm.rb
|
762
|
+
- lib/chef/provider/package/macports.rb
|
763
|
+
- lib/chef/provider/package/portage.rb
|
764
|
+
- lib/chef/provider/package/freebsd.rb
|
765
|
+
- lib/chef/provider/package/yum-dump.py
|
766
|
+
- lib/chef/provider/package/apt.rb
|
767
|
+
- lib/chef/provider/package/ips.rb
|
768
|
+
- lib/chef/provider/package/rubygems.rb
|
769
|
+
- lib/chef/provider/ohai.rb
|
770
|
+
- lib/chef/provider/user.rb
|
771
|
+
- lib/chef/provider/cookbook_file.rb
|
772
|
+
- lib/chef/provider/package.rb
|
773
|
+
- lib/chef/provider/git.rb
|
774
|
+
- lib/chef/provider/execute.rb
|
775
|
+
- lib/chef/provider/group/groupmod.rb
|
776
|
+
- lib/chef/provider/group/aix.rb
|
777
|
+
- lib/chef/provider/group/suse.rb
|
778
|
+
- lib/chef/provider/group/groupadd.rb
|
779
|
+
- lib/chef/provider/group/windows.rb
|
780
|
+
- lib/chef/provider/group/dscl.rb
|
781
|
+
- lib/chef/provider/group/usermod.rb
|
782
|
+
- lib/chef/provider/group/pw.rb
|
783
|
+
- lib/chef/provider/group/gpasswd.rb
|
784
|
+
- lib/chef/provider/service.rb
|
785
|
+
- lib/chef/provider/cron.rb
|
786
|
+
- lib/chef/search/query.rb
|
787
|
+
- lib/chef/knife/data_bag_list.rb
|
788
|
+
- lib/chef/knife/node_show.rb
|
789
|
+
- lib/chef/knife/environment_edit.rb
|
790
|
+
- lib/chef/knife/raw.rb
|
791
|
+
- lib/chef/knife/tag_create.rb
|
792
|
+
- lib/chef/knife/environment_from_file.rb
|
793
|
+
- lib/chef/knife/cookbook_test.rb
|
794
|
+
- lib/chef/knife/tag_list.rb
|
795
|
+
- lib/chef/knife/help.rb
|
796
|
+
- lib/chef/knife/role_show.rb
|
797
|
+
- lib/chef/knife/cookbook_site_unshare.rb
|
798
|
+
- lib/chef/knife/node_list.rb
|
799
|
+
- lib/chef/knife/role_create.rb
|
800
|
+
- lib/chef/knife/data_bag_delete.rb
|
801
|
+
- lib/chef/knife/node_from_file.rb
|
614
802
|
- lib/chef/knife/client_create.rb
|
615
|
-
- lib/chef/knife/client_delete.rb
|
616
803
|
- lib/chef/knife/client_edit.rb
|
617
804
|
- lib/chef/knife/client_list.rb
|
618
805
|
- lib/chef/knife/client_reregister.rb
|
619
806
|
- lib/chef/knife/client_show.rb
|
620
|
-
- lib/chef/knife/
|
807
|
+
- lib/chef/knife/environment_create.rb
|
621
808
|
- lib/chef/knife/configure_client.rb
|
622
|
-
- lib/chef/knife/
|
623
|
-
- lib/chef/knife/
|
624
|
-
- lib/chef/knife/
|
625
|
-
- lib/chef/knife/cookbook_download.rb
|
626
|
-
- lib/chef/knife/cookbook_list.rb
|
627
|
-
- lib/chef/knife/cookbook_metadata.rb
|
628
|
-
- lib/chef/knife/cookbook_metadata_from_file.rb
|
629
|
-
- lib/chef/knife/cookbook_show.rb
|
809
|
+
- lib/chef/knife/cookbook_site_vendor.rb
|
810
|
+
- lib/chef/knife/exec.rb
|
811
|
+
- lib/chef/knife/configure.rb
|
630
812
|
- lib/chef/knife/cookbook_site_download.rb
|
631
|
-
- lib/chef/knife/
|
813
|
+
- lib/chef/knife/index_rebuild.rb
|
814
|
+
- lib/chef/knife/tag_delete.rb
|
815
|
+
- lib/chef/knife/role_list.rb
|
816
|
+
- lib/chef/knife/download.rb
|
817
|
+
- lib/chef/knife/cookbook_list.rb
|
818
|
+
- lib/chef/knife/ssh.rb
|
819
|
+
- lib/chef/knife/data_bag_create.rb
|
820
|
+
- lib/chef/knife/environment_show.rb
|
632
821
|
- lib/chef/knife/cookbook_site_list.rb
|
633
|
-
- lib/chef/knife/
|
822
|
+
- lib/chef/knife/environment_list.rb
|
823
|
+
- lib/chef/knife/cookbook_delete.rb
|
824
|
+
- lib/chef/knife/role_from_file.rb
|
825
|
+
- lib/chef/knife/cookbook_bulk_delete.rb
|
826
|
+
- lib/chef/knife/data_bag_show.rb
|
827
|
+
- lib/chef/knife/node_edit.rb
|
828
|
+
- lib/chef/knife/upload.rb
|
829
|
+
- lib/chef/knife/help_topics.rb
|
830
|
+
- lib/chef/knife/diff.rb
|
831
|
+
- lib/chef/knife/environment_delete.rb
|
832
|
+
- lib/chef/knife/show.rb
|
833
|
+
- lib/chef/knife/data_bag_edit.rb
|
834
|
+
- lib/chef/knife/cookbook_show.rb
|
634
835
|
- lib/chef/knife/cookbook_site_share.rb
|
635
|
-
- lib/chef/knife/
|
636
|
-
- lib/chef/knife/cookbook_site_unshare.rb
|
637
|
-
- lib/chef/knife/cookbook_site_vendor.rb
|
638
|
-
- lib/chef/knife/cookbook_test.rb
|
639
|
-
- lib/chef/knife/cookbook_upload.rb
|
836
|
+
- lib/chef/knife/cookbook_metadata_from_file.rb
|
640
837
|
- lib/chef/knife/core/bootstrap_context.rb
|
641
838
|
- lib/chef/knife/core/cookbook_scm_repo.rb
|
642
|
-
- lib/chef/knife/core/generic_presenter.rb
|
643
|
-
- lib/chef/knife/core/node_editor.rb
|
644
|
-
- lib/chef/knife/core/node_presenter.rb
|
645
839
|
- lib/chef/knife/core/object_loader.rb
|
646
|
-
- lib/chef/knife/core/
|
840
|
+
- lib/chef/knife/core/node_presenter.rb
|
647
841
|
- lib/chef/knife/core/text_formatter.rb
|
648
842
|
- lib/chef/knife/core/ui.rb
|
649
|
-
- lib/chef/knife/
|
650
|
-
- lib/chef/knife/
|
651
|
-
- lib/chef/knife/
|
652
|
-
- lib/chef/knife/
|
653
|
-
- lib/chef/knife/data_bag_list.rb
|
654
|
-
- lib/chef/knife/data_bag_show.rb
|
655
|
-
- lib/chef/knife/delete.rb
|
656
|
-
- lib/chef/knife/diff.rb
|
657
|
-
- lib/chef/knife/download.rb
|
658
|
-
- lib/chef/knife/environment_create.rb
|
659
|
-
- lib/chef/knife/environment_delete.rb
|
660
|
-
- lib/chef/knife/environment_edit.rb
|
661
|
-
- lib/chef/knife/environment_from_file.rb
|
662
|
-
- lib/chef/knife/environment_list.rb
|
663
|
-
- lib/chef/knife/environment_show.rb
|
664
|
-
- lib/chef/knife/exec.rb
|
665
|
-
- lib/chef/knife/help.rb
|
666
|
-
- lib/chef/knife/help_topics.rb
|
667
|
-
- lib/chef/knife/index_rebuild.rb
|
843
|
+
- lib/chef/knife/core/node_editor.rb
|
844
|
+
- lib/chef/knife/core/subcommand_loader.rb
|
845
|
+
- lib/chef/knife/core/generic_presenter.rb
|
846
|
+
- lib/chef/knife/cookbook_site_install.rb
|
668
847
|
- lib/chef/knife/list.rb
|
669
|
-
- lib/chef/knife/node_bulk_delete.rb
|
670
|
-
- lib/chef/knife/node_create.rb
|
671
|
-
- lib/chef/knife/node_delete.rb
|
672
|
-
- lib/chef/knife/node_edit.rb
|
673
|
-
- lib/chef/knife/node_from_file.rb
|
674
|
-
- lib/chef/knife/node_list.rb
|
675
848
|
- lib/chef/knife/node_run_list_add.rb
|
849
|
+
- lib/chef/knife/bootstrap/archlinux-gems.erb
|
850
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
|
851
|
+
- lib/chef/knife/bootstrap/fedora13-gems.erb
|
852
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
|
853
|
+
- lib/chef/knife/bootstrap/centos5-gems.erb
|
854
|
+
- lib/chef/knife/bootstrap/chef-full.erb
|
855
|
+
- lib/chef/knife/bootstrap/ubuntu12.04-gems.erb
|
856
|
+
- lib/chef/knife/data_bag_from_file.rb
|
857
|
+
- lib/chef/knife/cookbook_download.rb
|
858
|
+
- lib/chef/knife/node_create.rb
|
859
|
+
- lib/chef/knife/delete.rb
|
860
|
+
- lib/chef/knife/client_delete.rb
|
861
|
+
- lib/chef/knife/cookbook_site_show.rb
|
676
862
|
- lib/chef/knife/node_run_list_remove.rb
|
677
|
-
- lib/chef/knife/
|
678
|
-
- lib/chef/knife/
|
679
|
-
- lib/chef/knife/
|
863
|
+
- lib/chef/knife/bootstrap.rb
|
864
|
+
- lib/chef/knife/cookbook_upload.rb
|
865
|
+
- lib/chef/knife/status.rb
|
866
|
+
- lib/chef/knife/cookbook_create.rb
|
680
867
|
- lib/chef/knife/role_bulk_delete.rb
|
681
|
-
- lib/chef/knife/
|
682
|
-
- lib/chef/knife/
|
868
|
+
- lib/chef/knife/cookbook_metadata.rb
|
869
|
+
- lib/chef/knife/cookbook_site_search.rb
|
870
|
+
- lib/chef/knife/node_bulk_delete.rb
|
683
871
|
- lib/chef/knife/role_edit.rb
|
684
|
-
- lib/chef/knife/
|
685
|
-
- lib/chef/knife/
|
686
|
-
- lib/chef/knife/
|
872
|
+
- lib/chef/knife/role_delete.rb
|
873
|
+
- lib/chef/knife/recipe_list.rb
|
874
|
+
- lib/chef/knife/node_delete.rb
|
687
875
|
- lib/chef/knife/search.rb
|
688
|
-
- lib/chef/knife/
|
689
|
-
- lib/chef/
|
690
|
-
- lib/chef/
|
691
|
-
- lib/chef/
|
692
|
-
- lib/chef/
|
693
|
-
- lib/chef/
|
694
|
-
- lib/chef/
|
695
|
-
- lib/chef/
|
696
|
-
- lib/chef/
|
697
|
-
- lib/chef/
|
698
|
-
- lib/chef/
|
699
|
-
- lib/chef/mixin/command/unix.rb
|
700
|
-
- lib/chef/mixin/command/windows.rb
|
701
|
-
- lib/chef/mixin/command.rb
|
702
|
-
- lib/chef/mixin/convert_to_class_name.rb
|
703
|
-
- lib/chef/mixin/create_path.rb
|
704
|
-
- lib/chef/mixin/deep_merge.rb
|
705
|
-
- lib/chef/mixin/deprecation.rb
|
706
|
-
- lib/chef/mixin/enforce_ownership_and_permissions.rb
|
707
|
-
- lib/chef/mixin/file_class.rb
|
708
|
-
- lib/chef/mixin/from_file.rb
|
709
|
-
- lib/chef/mixin/get_source_from_package.rb
|
710
|
-
- lib/chef/mixin/language.rb
|
711
|
-
- lib/chef/mixin/language_include_attribute.rb
|
712
|
-
- lib/chef/mixin/language_include_recipe.rb
|
713
|
-
- lib/chef/mixin/params_validate.rb
|
714
|
-
- lib/chef/mixin/path_sanity.rb
|
715
|
-
- lib/chef/mixin/recipe_definition_dsl_core.rb
|
716
|
-
- lib/chef/mixin/securable.rb
|
717
|
-
- lib/chef/mixin/shell_out.rb
|
718
|
-
- lib/chef/mixin/template.rb
|
719
|
-
- lib/chef/mixin/why_run.rb
|
720
|
-
- lib/chef/mixin/xml_escape.rb
|
721
|
-
- lib/chef/mixins.rb
|
722
|
-
- lib/chef/monkey_patches/dir.rb
|
723
|
-
- lib/chef/monkey_patches/fileutils.rb
|
724
|
-
- lib/chef/monkey_patches/net_http.rb
|
725
|
-
- lib/chef/monkey_patches/numeric.rb
|
726
|
-
- lib/chef/monkey_patches/object.rb
|
727
|
-
- lib/chef/monkey_patches/regexp.rb
|
728
|
-
- lib/chef/monkey_patches/string.rb
|
729
|
-
- lib/chef/monkey_patches/tempfile.rb
|
730
|
-
- lib/chef/nil_argument.rb
|
731
|
-
- lib/chef/node/attribute.rb
|
732
|
-
- lib/chef/node/attribute_collections.rb
|
733
|
-
- lib/chef/node/immutable_collections.rb
|
734
|
-
- lib/chef/node.rb
|
735
|
-
- lib/chef/platform.rb
|
736
|
-
- lib/chef/provider/breakpoint.rb
|
737
|
-
- lib/chef/provider/cookbook_file.rb
|
738
|
-
- lib/chef/provider/cron/solaris.rb
|
739
|
-
- lib/chef/provider/cron.rb
|
740
|
-
- lib/chef/provider/deploy/revision.rb
|
741
|
-
- lib/chef/provider/deploy/timestamped.rb
|
742
|
-
- lib/chef/provider/deploy.rb
|
743
|
-
- lib/chef/provider/directory.rb
|
744
|
-
- lib/chef/provider/env/windows.rb
|
745
|
-
- lib/chef/provider/env.rb
|
746
|
-
- lib/chef/provider/erl_call.rb
|
747
|
-
- lib/chef/provider/execute.rb
|
748
|
-
- lib/chef/provider/file.rb
|
749
|
-
- lib/chef/provider/git.rb
|
750
|
-
- lib/chef/provider/group/aix.rb
|
751
|
-
- lib/chef/provider/group/dscl.rb
|
752
|
-
- lib/chef/provider/group/gpasswd.rb
|
753
|
-
- lib/chef/provider/group/groupadd.rb
|
754
|
-
- lib/chef/provider/group/groupmod.rb
|
755
|
-
- lib/chef/provider/group/pw.rb
|
756
|
-
- lib/chef/provider/group/suse.rb
|
757
|
-
- lib/chef/provider/group/usermod.rb
|
758
|
-
- lib/chef/provider/group/windows.rb
|
759
|
-
- lib/chef/provider/group.rb
|
760
|
-
- lib/chef/provider/http_request.rb
|
761
|
-
- lib/chef/provider/ifconfig.rb
|
762
|
-
- lib/chef/provider/link.rb
|
763
|
-
- lib/chef/provider/log.rb
|
764
|
-
- lib/chef/provider/lwrp_base.rb
|
765
|
-
- lib/chef/provider/mdadm.rb
|
766
|
-
- lib/chef/provider/mount/mount.rb
|
767
|
-
- lib/chef/provider/mount/windows.rb
|
768
|
-
- lib/chef/provider/mount.rb
|
769
|
-
- lib/chef/provider/ohai.rb
|
770
|
-
- lib/chef/provider/package/apt.rb
|
771
|
-
- lib/chef/provider/package/dpkg.rb
|
772
|
-
- lib/chef/provider/package/easy_install.rb
|
773
|
-
- lib/chef/provider/package/freebsd.rb
|
774
|
-
- lib/chef/provider/package/ips.rb
|
775
|
-
- lib/chef/provider/package/macports.rb
|
776
|
-
- lib/chef/provider/package/pacman.rb
|
777
|
-
- lib/chef/provider/package/portage.rb
|
778
|
-
- lib/chef/provider/package/rpm.rb
|
779
|
-
- lib/chef/provider/package/rubygems.rb
|
780
|
-
- lib/chef/provider/package/smartos.rb
|
781
|
-
- lib/chef/provider/package/solaris.rb
|
782
|
-
- lib/chef/provider/package/yum-dump.py
|
783
|
-
- lib/chef/provider/package/yum.rb
|
784
|
-
- lib/chef/provider/package/zypper.rb
|
785
|
-
- lib/chef/provider/package.rb
|
786
|
-
- lib/chef/provider/registry_key.rb
|
787
|
-
- lib/chef/provider/remote_directory.rb
|
788
|
-
- lib/chef/provider/remote_file.rb
|
789
|
-
- lib/chef/provider/resource_update.rb
|
790
|
-
- lib/chef/provider/route.rb
|
791
|
-
- lib/chef/provider/ruby_block.rb
|
792
|
-
- lib/chef/provider/script.rb
|
793
|
-
- lib/chef/provider/service/arch.rb
|
794
|
-
- lib/chef/provider/service/debian.rb
|
795
|
-
- lib/chef/provider/service/freebsd.rb
|
796
|
-
- lib/chef/provider/service/gentoo.rb
|
797
|
-
- lib/chef/provider/service/init.rb
|
798
|
-
- lib/chef/provider/service/insserv.rb
|
799
|
-
- lib/chef/provider/service/invokercd.rb
|
800
|
-
- lib/chef/provider/service/macosx.rb
|
801
|
-
- lib/chef/provider/service/redhat.rb
|
802
|
-
- lib/chef/provider/service/simple.rb
|
803
|
-
- lib/chef/provider/service/solaris.rb
|
804
|
-
- lib/chef/provider/service/systemd.rb
|
805
|
-
- lib/chef/provider/service/upstart.rb
|
806
|
-
- lib/chef/provider/service/windows.rb
|
807
|
-
- lib/chef/provider/service.rb
|
808
|
-
- lib/chef/provider/subversion.rb
|
809
|
-
- lib/chef/provider/template.rb
|
810
|
-
- lib/chef/provider/template_finder.rb
|
811
|
-
- lib/chef/provider/user/dscl.rb
|
812
|
-
- lib/chef/provider/user/pw.rb
|
813
|
-
- lib/chef/provider/user/useradd.rb
|
814
|
-
- lib/chef/provider/user/windows.rb
|
815
|
-
- lib/chef/provider/user.rb
|
816
|
-
- lib/chef/provider.rb
|
817
|
-
- lib/chef/providers.rb
|
818
|
-
- lib/chef/recipe.rb
|
819
|
-
- lib/chef/reserved_names.rb
|
820
|
-
- lib/chef/resource/apt_package.rb
|
876
|
+
- lib/chef/knife/client_bulk_delete.rb
|
877
|
+
- lib/chef/api_client.rb
|
878
|
+
- lib/chef/resource/timestamped_deploy.rb
|
879
|
+
- lib/chef/resource/file.rb
|
880
|
+
- lib/chef/resource/http_request.rb
|
881
|
+
- lib/chef/resource/chef_gem.rb
|
882
|
+
- lib/chef/resource/route.rb
|
883
|
+
- lib/chef/resource/ruby_block.rb
|
884
|
+
- lib/chef/resource/directory.rb
|
885
|
+
- lib/chef/resource/deploy_revision.rb
|
886
|
+
- lib/chef/resource/ruby.rb
|
821
887
|
- lib/chef/resource/bash.rb
|
822
888
|
- lib/chef/resource/breakpoint.rb
|
823
|
-
- lib/chef/resource/chef_gem.rb
|
824
889
|
- lib/chef/resource/conditional.rb
|
825
|
-
- lib/chef/resource/
|
826
|
-
- lib/chef/resource/cron.rb
|
827
|
-
- lib/chef/resource/csh.rb
|
828
|
-
- lib/chef/resource/deploy.rb
|
829
|
-
- lib/chef/resource/deploy_revision.rb
|
830
|
-
- lib/chef/resource/directory.rb
|
831
|
-
- lib/chef/resource/dpkg_package.rb
|
832
|
-
- lib/chef/resource/easy_install_package.rb
|
890
|
+
- lib/chef/resource/subversion.rb
|
833
891
|
- lib/chef/resource/env.rb
|
834
|
-
- lib/chef/resource/erl_call.rb
|
835
|
-
- lib/chef/resource/execute.rb
|
836
|
-
- lib/chef/resource/file.rb
|
837
|
-
- lib/chef/resource/freebsd_package.rb
|
838
|
-
- lib/chef/resource/gem_package.rb
|
839
|
-
- lib/chef/resource/git.rb
|
840
|
-
- lib/chef/resource/group.rb
|
841
|
-
- lib/chef/resource/http_request.rb
|
842
|
-
- lib/chef/resource/ifconfig.rb
|
843
|
-
- lib/chef/resource/ips_package.rb
|
844
892
|
- lib/chef/resource/link.rb
|
845
|
-
- lib/chef/resource/
|
893
|
+
- lib/chef/resource/perl.rb
|
894
|
+
- lib/chef/resource/yum_package.rb
|
846
895
|
- lib/chef/resource/lwrp_base.rb
|
896
|
+
- lib/chef/resource/csh.rb
|
897
|
+
- lib/chef/resource/ips_package.rb
|
898
|
+
- lib/chef/resource/smartos_package.rb
|
899
|
+
- lib/chef/resource/pacman_package.rb
|
900
|
+
- lib/chef/resource/script.rb
|
901
|
+
- lib/chef/resource/log.rb
|
902
|
+
- lib/chef/resource/remote_directory.rb
|
903
|
+
- lib/chef/resource/erl_call.rb
|
904
|
+
- lib/chef/resource/dpkg_package.rb
|
905
|
+
- lib/chef/resource/registry_key.rb
|
906
|
+
- lib/chef/resource/gem_package.rb
|
847
907
|
- lib/chef/resource/macports_package.rb
|
908
|
+
- lib/chef/resource/scm.rb
|
909
|
+
- lib/chef/resource/ifconfig.rb
|
910
|
+
- lib/chef/resource/group.rb
|
911
|
+
- lib/chef/resource/remote_file.rb
|
912
|
+
- lib/chef/resource/template.rb
|
913
|
+
- lib/chef/resource/easy_install_package.rb
|
914
|
+
- lib/chef/resource/python.rb
|
915
|
+
- lib/chef/resource/deploy.rb
|
848
916
|
- lib/chef/resource/mdadm.rb
|
849
917
|
- lib/chef/resource/mount.rb
|
918
|
+
- lib/chef/resource/solaris_package.rb
|
850
919
|
- lib/chef/resource/ohai.rb
|
920
|
+
- lib/chef/resource/apt_package.rb
|
921
|
+
- lib/chef/resource/user.rb
|
922
|
+
- lib/chef/resource/freebsd_package.rb
|
923
|
+
- lib/chef/resource/cookbook_file.rb
|
851
924
|
- lib/chef/resource/package.rb
|
852
|
-
- lib/chef/resource/
|
853
|
-
- lib/chef/resource/perl.rb
|
854
|
-
- lib/chef/resource/portage_package.rb
|
855
|
-
- lib/chef/resource/python.rb
|
856
|
-
- lib/chef/resource/registry_key.rb
|
857
|
-
- lib/chef/resource/remote_directory.rb
|
858
|
-
- lib/chef/resource/remote_file.rb
|
859
|
-
- lib/chef/resource/route.rb
|
925
|
+
- lib/chef/resource/git.rb
|
860
926
|
- lib/chef/resource/rpm_package.rb
|
861
|
-
- lib/chef/resource/
|
862
|
-
- lib/chef/resource/ruby_block.rb
|
863
|
-
- lib/chef/resource/scm.rb
|
864
|
-
- lib/chef/resource/script.rb
|
927
|
+
- lib/chef/resource/execute.rb
|
865
928
|
- lib/chef/resource/service.rb
|
866
|
-
- lib/chef/resource/
|
867
|
-
- lib/chef/resource/
|
868
|
-
- lib/chef/
|
869
|
-
- lib/chef/
|
870
|
-
- lib/chef/
|
871
|
-
- lib/chef/
|
872
|
-
- lib/chef/
|
873
|
-
- lib/chef/
|
874
|
-
- lib/chef/resource_collection/stepable_iterator.rb
|
875
|
-
- lib/chef/resource_collection.rb
|
876
|
-
- lib/chef/resource_definition.rb
|
877
|
-
- lib/chef/resource_definition_list.rb
|
878
|
-
- lib/chef/resource_platform_map.rb
|
879
|
-
- lib/chef/resource_reporter.rb
|
880
|
-
- lib/chef/resources.rb
|
881
|
-
- lib/chef/rest/auth_credentials.rb
|
882
|
-
- lib/chef/rest/cookie_jar.rb
|
883
|
-
- lib/chef/rest/rest_request.rb
|
884
|
-
- lib/chef/rest.rb
|
885
|
-
- lib/chef/role.rb
|
886
|
-
- lib/chef/run_context/cookbook_compiler.rb
|
887
|
-
- lib/chef/run_context.rb
|
888
|
-
- lib/chef/run_list/run_list_expansion.rb
|
889
|
-
- lib/chef/run_list/run_list_item.rb
|
890
|
-
- lib/chef/run_list/versioned_recipe_list.rb
|
891
|
-
- lib/chef/run_list.rb
|
892
|
-
- lib/chef/run_lock.rb
|
893
|
-
- lib/chef/run_status.rb
|
894
|
-
- lib/chef/runner.rb
|
895
|
-
- lib/chef/sandbox.rb
|
896
|
-
- lib/chef/scan_access_control.rb
|
897
|
-
- lib/chef/search/query.rb
|
898
|
-
- lib/chef/shef/ext.rb
|
899
|
-
- lib/chef/shell/ext.rb
|
900
|
-
- lib/chef/shell/model_wrapper.rb
|
901
|
-
- lib/chef/shell/shell_rest.rb
|
902
|
-
- lib/chef/shell/shell_session.rb
|
903
|
-
- lib/chef/shell.rb
|
904
|
-
- lib/chef/shell_out.rb
|
905
|
-
- lib/chef/streaming_cookbook_uploader.rb
|
906
|
-
- lib/chef/tasks/chef_repo.rake
|
907
|
-
- lib/chef/util/file_edit.rb
|
908
|
-
- lib/chef/util/windows/net_group.rb
|
909
|
-
- lib/chef/util/windows/net_use.rb
|
910
|
-
- lib/chef/util/windows/net_user.rb
|
911
|
-
- lib/chef/util/windows/volume.rb
|
912
|
-
- lib/chef/util/windows.rb
|
913
|
-
- lib/chef/version.rb
|
914
|
-
- lib/chef/version_class.rb
|
915
|
-
- lib/chef/version_constraint.rb
|
916
|
-
- lib/chef/win32/api/error.rb
|
917
|
-
- lib/chef/win32/api/file.rb
|
918
|
-
- lib/chef/win32/api/memory.rb
|
919
|
-
- lib/chef/win32/api/process.rb
|
920
|
-
- lib/chef/win32/api/psapi.rb
|
921
|
-
- lib/chef/win32/api/security.rb
|
922
|
-
- lib/chef/win32/api/system.rb
|
923
|
-
- lib/chef/win32/api/unicode.rb
|
924
|
-
- lib/chef/win32/api.rb
|
925
|
-
- lib/chef/win32/error.rb
|
926
|
-
- lib/chef/win32/file/info.rb
|
927
|
-
- lib/chef/win32/file.rb
|
928
|
-
- lib/chef/win32/handle.rb
|
929
|
-
- lib/chef/win32/memory.rb
|
930
|
-
- lib/chef/win32/process.rb
|
931
|
-
- lib/chef/win32/registry.rb
|
932
|
-
- lib/chef/win32/security/ace.rb
|
933
|
-
- lib/chef/win32/security/acl.rb
|
934
|
-
- lib/chef/win32/security/securable_object.rb
|
935
|
-
- lib/chef/win32/security/security_descriptor.rb
|
936
|
-
- lib/chef/win32/security/sid.rb
|
937
|
-
- lib/chef/win32/security/token.rb
|
938
|
-
- lib/chef/win32/security.rb
|
939
|
-
- lib/chef/win32/unicode.rb
|
940
|
-
- lib/chef/win32/version.rb
|
941
|
-
- lib/chef.rb
|
929
|
+
- lib/chef/resource/cron.rb
|
930
|
+
- lib/chef/resource/portage_package.rb
|
931
|
+
- lib/chef/application/windows_service.rb
|
932
|
+
- lib/chef/application/knife.rb
|
933
|
+
- lib/chef/application/solo.rb
|
934
|
+
- lib/chef/application/client.rb
|
935
|
+
- lib/chef/application/agent.rb
|
936
|
+
- lib/chef/application/apply.rb
|
942
937
|
- tasks/rspec.rb
|
943
|
-
- spec/
|
944
|
-
- spec/
|
945
|
-
- spec/
|
946
|
-
- spec/
|
947
|
-
- spec/
|
948
|
-
- spec/
|
949
|
-
- spec/
|
950
|
-
- spec/data/cb_version_cookbooks/tatft/files/default/giant_blob.tgz
|
951
|
-
- spec/data/cb_version_cookbooks/tatft/libraries/ownage.rb
|
952
|
-
- spec/data/cb_version_cookbooks/tatft/providers/lwp.rb
|
953
|
-
- spec/data/cb_version_cookbooks/tatft/README.rdoc
|
954
|
-
- spec/data/cb_version_cookbooks/tatft/recipes/default.rb
|
955
|
-
- spec/data/cb_version_cookbooks/tatft/resources/lwr.rb
|
956
|
-
- spec/data/cb_version_cookbooks/tatft/templates/default/configuration.erb
|
957
|
-
- spec/data/checksum/random.txt
|
958
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-600hhz-0
|
959
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-6m8zdk-0
|
960
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ahd2gq-0
|
961
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-api8ux-0
|
962
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-b0r1m1-0
|
963
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-bfygsi-0
|
964
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-el14l6-0
|
965
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ivrl3y-0
|
966
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-kkbs85-0
|
967
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ory1ux-0
|
968
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-pgsq76-0
|
969
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ra8uim-0
|
970
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t7k1g-0
|
971
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t8g0sv-0
|
972
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ufy6g3-0
|
973
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-x2d6j9-0
|
974
|
-
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-xi0l6h-0
|
975
|
-
- spec/data/config.rb
|
976
|
-
- spec/data/cookbooks/angrybash/recipes/default.rb
|
977
|
-
- spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
|
978
|
-
- spec/data/cookbooks/apache2/recipes/default.rb
|
979
|
-
- spec/data/cookbooks/borken/recipes/default.rb
|
980
|
-
- spec/data/cookbooks/borken/templates/default/borken.erb
|
981
|
-
- spec/data/cookbooks/chefignore
|
982
|
-
- spec/data/cookbooks/java/files/default/java.response
|
983
|
-
- spec/data/cookbooks/openldap/attributes/default.rb
|
984
|
-
- spec/data/cookbooks/openldap/attributes/smokey.rb
|
985
|
-
- spec/data/cookbooks/openldap/definitions/client.rb
|
986
|
-
- spec/data/cookbooks/openldap/definitions/server.rb
|
987
|
-
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file1.txt
|
988
|
-
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file2.txt
|
989
|
-
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file1.txt
|
990
|
-
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file2.txt
|
991
|
-
- spec/data/cookbooks/openldap/files/default/remotedir/subdir_with_no_file_just_a_subsubdir/the_subsubdir/some_file.txt
|
992
|
-
- spec/data/cookbooks/openldap/recipes/default.rb
|
993
|
-
- spec/data/cookbooks/openldap/recipes/gigantor.rb
|
994
|
-
- spec/data/cookbooks/openldap/recipes/one.rb
|
995
|
-
- spec/data/cookbooks/openldap/templates/default/openldap_stuff.conf.erb
|
996
|
-
- spec/data/cookbooks/openldap/templates/default/openldap_variable_stuff.conf.erb
|
997
|
-
- spec/data/cookbooks/openldap/templates/default/test.erb
|
998
|
-
- spec/data/definitions/test.rb
|
999
|
-
- spec/data/environment-config.rb
|
1000
|
-
- spec/data/fileedit/blank
|
1001
|
-
- spec/data/fileedit/hosts
|
1002
|
-
- spec/data/gems/chef-integration-test-0.1.0.gem
|
1003
|
-
- spec/data/git_bundles/sinatra-test-app-with-callback-files.gitbundle
|
1004
|
-
- spec/data/git_bundles/sinatra-test-app-with-symlinks.gitbundle
|
1005
|
-
- spec/data/git_bundles/sinatra-test-app.gitbundle
|
1006
|
-
- spec/data/kitchen/chefignore
|
1007
|
-
- spec/data/kitchen/openldap/attributes/default.rb
|
1008
|
-
- spec/data/kitchen/openldap/attributes/robinson.rb
|
1009
|
-
- spec/data/kitchen/openldap/definitions/client.rb
|
1010
|
-
- spec/data/kitchen/openldap/definitions/drewbarrymore.rb
|
1011
|
-
- spec/data/kitchen/openldap/recipes/gigantor.rb
|
1012
|
-
- spec/data/kitchen/openldap/recipes/ignoreme.rb
|
1013
|
-
- spec/data/kitchen/openldap/recipes/woot.rb
|
1014
|
-
- spec/data/knife-site-subcommands/plugins/knife/example_subcommand.rb
|
1015
|
-
- spec/data/knife_subcommand/test_explicit_category.rb
|
1016
|
-
- spec/data/knife_subcommand/test_name_mapping.rb
|
1017
|
-
- spec/data/knife_subcommand/test_yourself.rb
|
1018
|
-
- spec/data/lwrp/providers/buck_passer.rb
|
1019
|
-
- spec/data/lwrp/providers/buck_passer_2.rb
|
1020
|
-
- spec/data/lwrp/providers/embedded_resource_accesses_providers_scope.rb
|
1021
|
-
- spec/data/lwrp/providers/inline_compiler.rb
|
1022
|
-
- spec/data/lwrp/providers/monkey_name_printer.rb
|
1023
|
-
- spec/data/lwrp/providers/paint_drying_watcher.rb
|
1024
|
-
- spec/data/lwrp/providers/thumb_twiddler.rb
|
1025
|
-
- spec/data/lwrp/resources/bar.rb
|
1026
|
-
- spec/data/lwrp/resources/foo.rb
|
1027
|
-
- spec/data/lwrp/resources_with_default_attributes/nodeattr.rb
|
1028
|
-
- spec/data/lwrp_override/providers/buck_passer.rb
|
1029
|
-
- spec/data/lwrp_override/resources/foo.rb
|
1030
|
-
- spec/data/metadata/quick_start/metadata.rb
|
1031
|
-
- spec/data/nodes/default.rb
|
1032
|
-
- spec/data/nodes/test.example.com.rb
|
1033
|
-
- spec/data/nodes/test.rb
|
1034
|
-
- spec/data/object_loader/environments/test.json
|
1035
|
-
- spec/data/object_loader/environments/test.rb
|
1036
|
-
- spec/data/object_loader/environments/test_json_class.json
|
1037
|
-
- spec/data/object_loader/nodes/test.json
|
1038
|
-
- spec/data/object_loader/nodes/test.rb
|
1039
|
-
- spec/data/object_loader/nodes/test_json_class.json
|
1040
|
-
- spec/data/object_loader/roles/test.json
|
1041
|
-
- spec/data/object_loader/roles/test.rb
|
1042
|
-
- spec/data/object_loader/roles/test_json_class.json
|
1043
|
-
- spec/data/old_home_dir/my-dot-emacs
|
1044
|
-
- spec/data/old_home_dir/my-dot-vim
|
1045
|
-
- spec/data/partial_one.erb
|
1046
|
-
- spec/data/recipes/test.rb
|
1047
|
-
- spec/data/remote_directory_data/remote_dir_file.txt
|
1048
|
-
- spec/data/remote_directory_data/remote_subdirectory/remote_subdir_file.txt
|
1049
|
-
- spec/data/remote_file/nyan_cat.png
|
1050
|
-
- spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb
|
1051
|
-
- spec/data/run_context/cookbooks/circular-dep1/definitions/circular_dep1_res.rb
|
1052
|
-
- spec/data/run_context/cookbooks/circular-dep1/libraries/lib.rb
|
1053
|
-
- spec/data/run_context/cookbooks/circular-dep1/metadata.rb
|
1054
|
-
- spec/data/run_context/cookbooks/circular-dep1/providers/provider.rb
|
1055
|
-
- spec/data/run_context/cookbooks/circular-dep1/recipes/default.rb
|
1056
|
-
- spec/data/run_context/cookbooks/circular-dep1/resources/resource.rb
|
1057
|
-
- spec/data/run_context/cookbooks/circular-dep2/attributes/default.rb
|
1058
|
-
- spec/data/run_context/cookbooks/circular-dep2/definitions/circular_dep2_res.rb
|
1059
|
-
- spec/data/run_context/cookbooks/circular-dep2/libraries/lib.rb
|
1060
|
-
- spec/data/run_context/cookbooks/circular-dep2/metadata.rb
|
1061
|
-
- spec/data/run_context/cookbooks/circular-dep2/providers/provider.rb
|
1062
|
-
- spec/data/run_context/cookbooks/circular-dep2/recipes/default.rb
|
1063
|
-
- spec/data/run_context/cookbooks/circular-dep2/resources/resource.rb
|
1064
|
-
- spec/data/run_context/cookbooks/dependency1/attributes/aa_first.rb
|
1065
|
-
- spec/data/run_context/cookbooks/dependency1/attributes/default.rb
|
1066
|
-
- spec/data/run_context/cookbooks/dependency1/attributes/zz_last.rb
|
1067
|
-
- spec/data/run_context/cookbooks/dependency1/definitions/dependency1_res.rb
|
1068
|
-
- spec/data/run_context/cookbooks/dependency1/libraries/lib.rb
|
1069
|
-
- spec/data/run_context/cookbooks/dependency1/providers/provider.rb
|
1070
|
-
- spec/data/run_context/cookbooks/dependency1/recipes/default.rb
|
1071
|
-
- spec/data/run_context/cookbooks/dependency1/resources/resource.rb
|
1072
|
-
- spec/data/run_context/cookbooks/dependency2/attributes/default.rb
|
1073
|
-
- spec/data/run_context/cookbooks/dependency2/definitions/dependency2_res.rb
|
1074
|
-
- spec/data/run_context/cookbooks/dependency2/libraries/lib.rb
|
1075
|
-
- spec/data/run_context/cookbooks/dependency2/providers/provider.rb
|
1076
|
-
- spec/data/run_context/cookbooks/dependency2/recipes/default.rb
|
1077
|
-
- spec/data/run_context/cookbooks/dependency2/resources/resource.rb
|
1078
|
-
- spec/data/run_context/cookbooks/no-default-attr/attributes/server.rb
|
1079
|
-
- spec/data/run_context/cookbooks/no-default-attr/definitions/no_default-attr_res.rb
|
1080
|
-
- spec/data/run_context/cookbooks/no-default-attr/providers/provider.rb
|
1081
|
-
- spec/data/run_context/cookbooks/no-default-attr/recipes/default.rb
|
1082
|
-
- spec/data/run_context/cookbooks/no-default-attr/resources/resource.rb
|
1083
|
-
- spec/data/run_context/cookbooks/test/attributes/default.rb
|
1084
|
-
- spec/data/run_context/cookbooks/test/attributes/george.rb
|
1085
|
-
- spec/data/run_context/cookbooks/test/definitions/new_animals.rb
|
1086
|
-
- spec/data/run_context/cookbooks/test/definitions/new_cat.rb
|
1087
|
-
- spec/data/run_context/cookbooks/test/definitions/test_res.rb
|
1088
|
-
- spec/data/run_context/cookbooks/test/providers/provider.rb
|
1089
|
-
- spec/data/run_context/cookbooks/test/recipes/default.rb
|
1090
|
-
- spec/data/run_context/cookbooks/test/recipes/one.rb
|
1091
|
-
- spec/data/run_context/cookbooks/test/recipes/two.rb
|
1092
|
-
- spec/data/run_context/cookbooks/test/resources/resource.rb
|
1093
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/attributes/default.rb
|
1094
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/definitions/test_with-circular-deps_res.rb
|
1095
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/libraries/lib.rb
|
1096
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/metadata.rb
|
1097
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/providers/provider.rb
|
1098
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/recipes/default.rb
|
1099
|
-
- spec/data/run_context/cookbooks/test-with-circular-deps/resources/resource.rb
|
1100
|
-
- spec/data/run_context/cookbooks/test-with-deps/attributes/default.rb
|
1101
|
-
- spec/data/run_context/cookbooks/test-with-deps/definitions/test_with-deps_res.rb
|
1102
|
-
- spec/data/run_context/cookbooks/test-with-deps/libraries/lib.rb
|
1103
|
-
- spec/data/run_context/cookbooks/test-with-deps/metadata.rb
|
1104
|
-
- spec/data/run_context/cookbooks/test-with-deps/providers/provider.rb
|
1105
|
-
- spec/data/run_context/cookbooks/test-with-deps/recipes/default.rb
|
1106
|
-
- spec/data/run_context/cookbooks/test-with-deps/recipes/server.rb
|
1107
|
-
- spec/data/run_context/cookbooks/test-with-deps/resources/resource.rb
|
1108
|
-
- spec/data/run_context/nodes/run_context.rb
|
1109
|
-
- spec/data/search_queries_to_transform.txt
|
1110
|
-
- spec/data/shef-config.rb
|
1111
|
-
- spec/data/ssl/5e707473.0
|
1112
|
-
- spec/data/ssl/chef-rspec.cert
|
1113
|
-
- spec/data/ssl/chef-rspec.key
|
1114
|
-
- spec/data/ssl/key.pem
|
1115
|
-
- spec/data/ssl/private_key.pem
|
1116
|
-
- spec/data/ssl/private_key_with_whitespace.pem
|
1117
|
-
- spec/data/templates/seattle.txt
|
1118
|
-
- spec/functional/dsl/registry_helper_spec.rb
|
1119
|
-
- spec/functional/knife/cookbook_delete_spec.rb
|
1120
|
-
- spec/functional/knife/exec_spec.rb
|
1121
|
-
- spec/functional/knife/smoke_test.rb
|
1122
|
-
- spec/functional/knife/ssh_spec.rb
|
1123
|
-
- spec/functional/resource/cookbook_file_spec.rb
|
1124
|
-
- spec/functional/resource/deploy_revision_spec.rb
|
1125
|
-
- spec/functional/resource/directory_spec.rb
|
1126
|
-
- spec/functional/resource/file_spec.rb
|
1127
|
-
- spec/functional/resource/link_spec.rb
|
1128
|
-
- spec/functional/resource/registry_spec.rb
|
1129
|
-
- spec/functional/resource/remote_directory_spec.rb
|
1130
|
-
- spec/functional/resource/remote_file_spec.rb
|
1131
|
-
- spec/functional/resource/template_spec.rb
|
1132
|
-
- spec/functional/run_lock_spec.rb
|
1133
|
-
- spec/functional/shell_spec.rb
|
1134
|
-
- spec/functional/tiny_server_spec.rb
|
1135
|
-
- spec/functional/win32/registry_helper_spec.rb
|
1136
|
-
- spec/functional/win32/security_spec.rb
|
1137
|
-
- spec/rcov.opts
|
1138
|
-
- spec/spec_helper.rb
|
1139
|
-
- spec/stress/win32/file_spec.rb
|
1140
|
-
- spec/stress/win32/memory_spec.rb
|
1141
|
-
- spec/stress/win32/security_spec.rb
|
1142
|
-
- spec/support/chef_helpers.rb
|
1143
|
-
- spec/support/lib/chef/provider/easy.rb
|
1144
|
-
- spec/support/lib/chef/provider/snakeoil.rb
|
1145
|
-
- spec/support/lib/chef/resource/cat.rb
|
1146
|
-
- spec/support/lib/chef/resource/one_two_three_four.rb
|
1147
|
-
- spec/support/lib/chef/resource/zen_master.rb
|
1148
|
-
- spec/support/matchers/leak.rb
|
1149
|
-
- spec/support/mock/constant.rb
|
1150
|
-
- spec/support/mock/platform.rb
|
1151
|
-
- spec/support/platform_helpers.rb
|
1152
|
-
- spec/support/platforms/prof/gc.rb
|
1153
|
-
- spec/support/platforms/prof/win32.rb
|
1154
|
-
- spec/support/shared/functional/directory_resource.rb
|
1155
|
-
- spec/support/shared/functional/file_resource.rb
|
1156
|
-
- spec/support/shared/functional/knife.rb
|
1157
|
-
- spec/support/shared/functional/securable_resource.rb
|
1158
|
-
- spec/support/shared/functional/securable_resource_with_reporting.rb
|
1159
|
-
- spec/support/shared/unit/api_error_inspector.rb
|
1160
|
-
- spec/support/shared/unit/file_system_support.rb
|
1161
|
-
- spec/support/shared/unit/platform_introspector.rb
|
1162
|
-
- spec/tiny_server.rb
|
938
|
+
- spec/unit/registry_helper_spec.rb
|
939
|
+
- spec/unit/data_bag_spec.rb
|
940
|
+
- spec/unit/version_class_spec.rb
|
941
|
+
- spec/unit/resource_collection_spec.rb
|
942
|
+
- spec/unit/environment_spec.rb
|
943
|
+
- spec/unit/config_spec.rb
|
944
|
+
- spec/unit/resource_platform_map_spec.rb
|
1163
945
|
- spec/unit/api_client/registration_spec.rb
|
946
|
+
- spec/unit/resource_collection/stepable_iterator_spec.rb
|
947
|
+
- spec/unit/rest/auth_credentials_spec.rb
|
1164
948
|
- spec/unit/api_client_spec.rb
|
1165
|
-
- spec/unit/
|
1166
|
-
- spec/unit/
|
1167
|
-
- spec/unit/
|
1168
|
-
- spec/unit/
|
1169
|
-
- spec/unit/
|
1170
|
-
- spec/unit/
|
1171
|
-
- spec/unit/
|
1172
|
-
- spec/unit/
|
1173
|
-
- spec/unit/chef_fs/
|
949
|
+
- spec/unit/knife_spec.rb
|
950
|
+
- spec/unit/node_spec.rb
|
951
|
+
- spec/unit/cookbook_version_spec.rb
|
952
|
+
- spec/unit/shell/shell_ext_spec.rb
|
953
|
+
- spec/unit/shell/shell_session_spec.rb
|
954
|
+
- spec/unit/shell/model_wrapper_spec.rb
|
955
|
+
- spec/unit/lwrp_spec.rb
|
956
|
+
- spec/unit/run_context/cookbook_compiler_spec.rb
|
957
|
+
- spec/unit/chef_fs/file_system_spec.rb
|
1174
958
|
- spec/unit/chef_fs/file_pattern_spec.rb
|
959
|
+
- spec/unit/chef_fs/file_system/data_bags_dir_spec.rb
|
1175
960
|
- spec/unit/chef_fs/file_system/chef_server_root_dir_spec.rb
|
1176
961
|
- spec/unit/chef_fs/file_system/cookbooks_dir_spec.rb
|
1177
|
-
- spec/unit/chef_fs/
|
1178
|
-
- spec/unit/chef_fs/file_system_spec.rb
|
1179
|
-
- spec/unit/chef_spec.rb
|
1180
|
-
- spec/unit/client_spec.rb
|
1181
|
-
- spec/unit/config_spec.rb
|
1182
|
-
- spec/unit/cookbook/chefignore_spec.rb
|
1183
|
-
- spec/unit/cookbook/metadata_spec.rb
|
1184
|
-
- spec/unit/cookbook/synchronizer_spec.rb
|
1185
|
-
- spec/unit/cookbook/syntax_check_spec.rb
|
1186
|
-
- spec/unit/cookbook_loader_spec.rb
|
1187
|
-
- spec/unit/cookbook_manifest_spec.rb
|
1188
|
-
- spec/unit/cookbook_spec.rb
|
1189
|
-
- spec/unit/cookbook_version_spec.rb
|
1190
|
-
- spec/unit/daemon_spec.rb
|
1191
|
-
- spec/unit/data_bag_item_spec.rb
|
1192
|
-
- spec/unit/data_bag_spec.rb
|
1193
|
-
- spec/unit/digester_spec.rb
|
1194
|
-
- spec/unit/dsl/data_query_spec.rb
|
1195
|
-
- spec/unit/dsl/platform_introspection_spec.rb
|
1196
|
-
- spec/unit/dsl/regsitry_helper_spec.rb
|
1197
|
-
- spec/unit/encrypted_data_bag_item_spec.rb
|
1198
|
-
- spec/unit/environment_spec.rb
|
962
|
+
- spec/unit/chef_fs/diff_spec.rb
|
1199
963
|
- spec/unit/exceptions_spec.rb
|
1200
|
-
- spec/unit/
|
964
|
+
- spec/unit/provider_spec.rb
|
1201
965
|
- spec/unit/file_cache_spec.rb
|
1202
|
-
- spec/unit/
|
966
|
+
- spec/unit/shell_spec.rb
|
967
|
+
- spec/unit/checksum/storage/filesystem_spec.rb
|
968
|
+
- spec/unit/client_spec.rb
|
969
|
+
- spec/unit/resource_spec.rb
|
970
|
+
- spec/unit/json_compat_spec.rb
|
971
|
+
- spec/unit/dsl/data_query_spec.rb
|
972
|
+
- spec/unit/dsl/regsitry_helper_spec.rb
|
973
|
+
- spec/unit/dsl/platform_introspection_spec.rb
|
974
|
+
- spec/unit/monkey_patches/string_spec.rb
|
975
|
+
- spec/unit/handler/json_file_spec.rb
|
976
|
+
- spec/unit/cookbook_loader_spec.rb
|
977
|
+
- spec/unit/log_spec.rb
|
978
|
+
- spec/unit/formatters/error_inspectors/run_list_expansion_error_inspector_spec.rb
|
979
|
+
- spec/unit/formatters/error_inspectors/resource_failure_inspector_spec.rb
|
1203
980
|
- spec/unit/formatters/error_inspectors/cookbook_resolve_error_inspector_spec.rb
|
1204
|
-
- spec/unit/formatters/error_inspectors/
|
981
|
+
- spec/unit/formatters/error_inspectors/compile_error_inspector_spec.rb
|
1205
982
|
- spec/unit/formatters/error_inspectors/node_load_error_inspector_spec.rb
|
983
|
+
- spec/unit/formatters/error_inspectors/cookbook_sync_error_inspector_spec.rb
|
1206
984
|
- spec/unit/formatters/error_inspectors/registration_error_inspector_spec.rb
|
1207
|
-
- spec/unit/
|
1208
|
-
- spec/unit/
|
1209
|
-
- spec/unit/
|
1210
|
-
- spec/unit/
|
1211
|
-
- spec/unit/
|
1212
|
-
- spec/unit/
|
1213
|
-
- spec/unit/
|
1214
|
-
- spec/unit/
|
1215
|
-
- spec/unit/
|
1216
|
-
- spec/unit/
|
1217
|
-
- spec/unit/
|
1218
|
-
- spec/unit/
|
1219
|
-
- spec/unit/
|
1220
|
-
- spec/unit/
|
1221
|
-
- spec/unit/
|
1222
|
-
- spec/unit/
|
1223
|
-
- spec/unit/knife/cookbook_bulk_delete_spec.rb
|
1224
|
-
- spec/unit/knife/cookbook_create_spec.rb
|
1225
|
-
- spec/unit/knife/cookbook_delete_spec.rb
|
1226
|
-
- spec/unit/knife/cookbook_download_spec.rb
|
1227
|
-
- spec/unit/knife/cookbook_list_spec.rb
|
1228
|
-
- spec/unit/knife/cookbook_metadata_from_file_spec.rb
|
1229
|
-
- spec/unit/knife/cookbook_metadata_spec.rb
|
1230
|
-
- spec/unit/knife/cookbook_show_spec.rb
|
1231
|
-
- spec/unit/knife/cookbook_site_download_spec.rb
|
1232
|
-
- spec/unit/knife/cookbook_site_install_spec.rb
|
1233
|
-
- spec/unit/knife/cookbook_site_share_spec.rb
|
1234
|
-
- spec/unit/knife/cookbook_site_unshare_spec.rb
|
1235
|
-
- spec/unit/knife/cookbook_test_spec.rb
|
1236
|
-
- spec/unit/knife/cookbook_upload_spec.rb
|
1237
|
-
- spec/unit/knife/core/bootstrap_context_spec.rb
|
1238
|
-
- spec/unit/knife/core/cookbook_scm_repo_spec.rb
|
1239
|
-
- spec/unit/knife/core/object_loader_spec.rb
|
1240
|
-
- spec/unit/knife/core/subcommand_loader_spec.rb
|
1241
|
-
- spec/unit/knife/core/ui_spec.rb
|
1242
|
-
- spec/unit/knife/data_bag_create_spec.rb
|
1243
|
-
- spec/unit/knife/data_bag_edit_spec.rb
|
1244
|
-
- spec/unit/knife/data_bag_from_file_spec.rb
|
1245
|
-
- spec/unit/knife/data_bag_show_spec.rb
|
1246
|
-
- spec/unit/knife/environment_create_spec.rb
|
1247
|
-
- spec/unit/knife/environment_delete_spec.rb
|
1248
|
-
- spec/unit/knife/environment_edit_spec.rb
|
1249
|
-
- spec/unit/knife/environment_from_file_spec.rb
|
1250
|
-
- spec/unit/knife/environment_list_spec.rb
|
1251
|
-
- spec/unit/knife/environment_show_spec.rb
|
1252
|
-
- spec/unit/knife/index_rebuild_spec.rb
|
1253
|
-
- spec/unit/knife/knife_help.rb
|
1254
|
-
- spec/unit/knife/node_bulk_delete_spec.rb
|
1255
|
-
- spec/unit/knife/node_delete_spec.rb
|
1256
|
-
- spec/unit/knife/node_edit_spec.rb
|
1257
|
-
- spec/unit/knife/node_from_file_spec.rb
|
1258
|
-
- spec/unit/knife/node_list_spec.rb
|
1259
|
-
- spec/unit/knife/node_run_list_add_spec.rb
|
1260
|
-
- spec/unit/knife/node_run_list_remove_spec.rb
|
1261
|
-
- spec/unit/knife/node_show_spec.rb
|
1262
|
-
- spec/unit/knife/role_bulk_delete_spec.rb
|
1263
|
-
- spec/unit/knife/role_create_spec.rb
|
1264
|
-
- spec/unit/knife/role_delete_spec.rb
|
1265
|
-
- spec/unit/knife/role_edit_spec.rb
|
1266
|
-
- spec/unit/knife/role_from_file_spec.rb
|
1267
|
-
- spec/unit/knife/role_list_spec.rb
|
1268
|
-
- spec/unit/knife/ssh_spec.rb
|
1269
|
-
- spec/unit/knife/status_spec.rb
|
1270
|
-
- spec/unit/knife/tag_create_spec.rb
|
1271
|
-
- spec/unit/knife/tag_delete_spec.rb
|
1272
|
-
- spec/unit/knife/tag_list_spec.rb
|
1273
|
-
- spec/unit/knife_spec.rb
|
1274
|
-
- spec/unit/log_spec.rb
|
1275
|
-
- spec/unit/lwrp_spec.rb
|
1276
|
-
- spec/unit/mash_spec.rb
|
1277
|
-
- spec/unit/mixin/checksum_spec.rb
|
1278
|
-
- spec/unit/mixin/command_spec.rb
|
985
|
+
- spec/unit/run_list/run_list_item_spec.rb
|
986
|
+
- spec/unit/run_list/versioned_recipe_list_spec.rb
|
987
|
+
- spec/unit/run_list/run_list_expansion_spec.rb
|
988
|
+
- spec/unit/digester_spec.rb
|
989
|
+
- spec/unit/encrypted_data_bag_item_spec.rb
|
990
|
+
- spec/unit/application_spec.rb
|
991
|
+
- spec/unit/recipe_spec.rb
|
992
|
+
- spec/unit/cookbook_manifest_spec.rb
|
993
|
+
- spec/unit/resource_reporter_spec.rb
|
994
|
+
- spec/unit/run_context_spec.rb
|
995
|
+
- spec/unit/run_lock_spec.rb
|
996
|
+
- spec/unit/node/immutable_collections_spec.rb
|
997
|
+
- spec/unit/node/attribute_spec.rb
|
998
|
+
- spec/unit/scan_access_control_spec.rb
|
999
|
+
- spec/unit/role_spec.rb
|
1000
|
+
- spec/unit/platform_spec.rb
|
1279
1001
|
- spec/unit/mixin/convert_to_class_name_spec.rb
|
1002
|
+
- spec/unit/mixin/path_sanity_spec.rb
|
1003
|
+
- spec/unit/mixin/params_validate_spec.rb
|
1004
|
+
- spec/unit/mixin/xml_escape_spec.rb
|
1005
|
+
- spec/unit/mixin/command_spec.rb
|
1280
1006
|
- spec/unit/mixin/deep_merge_spec.rb
|
1007
|
+
- spec/unit/mixin/template_spec.rb
|
1008
|
+
- spec/unit/mixin/checksum_spec.rb
|
1281
1009
|
- spec/unit/mixin/deprecation_spec.rb
|
1282
1010
|
- spec/unit/mixin/enforce_ownership_and_permissions_spec.rb
|
1283
|
-
- spec/unit/mixin/params_validate_spec.rb
|
1284
|
-
- spec/unit/mixin/path_sanity_spec.rb
|
1285
1011
|
- spec/unit/mixin/securable_spec.rb
|
1286
1012
|
- spec/unit/mixin/shell_out_spec.rb
|
1287
|
-
- spec/unit/
|
1288
|
-
- spec/unit/
|
1289
|
-
- spec/unit/
|
1290
|
-
- spec/unit/
|
1291
|
-
- spec/unit/
|
1292
|
-
- spec/unit/
|
1293
|
-
- spec/unit/
|
1294
|
-
- spec/unit/
|
1295
|
-
- spec/unit/
|
1296
|
-
- spec/unit/
|
1297
|
-
- spec/unit/
|
1298
|
-
- spec/unit/
|
1299
|
-
- spec/unit/
|
1300
|
-
- spec/unit/
|
1301
|
-
- spec/unit/
|
1302
|
-
- spec/unit/
|
1303
|
-
- spec/unit/provider/erl_call_spec.rb
|
1013
|
+
- spec/unit/resource_definition_spec.rb
|
1014
|
+
- spec/unit/handler_spec.rb
|
1015
|
+
- spec/unit/cookbook/syntax_check_spec.rb
|
1016
|
+
- spec/unit/cookbook/metadata_spec.rb
|
1017
|
+
- spec/unit/cookbook/chefignore_spec.rb
|
1018
|
+
- spec/unit/cookbook/synchronizer_spec.rb
|
1019
|
+
- spec/unit/data_bag_item_spec.rb
|
1020
|
+
- spec/unit/util/file_edit_spec.rb
|
1021
|
+
- spec/unit/cookbook_spec.rb
|
1022
|
+
- spec/unit/version_constraint_spec.rb
|
1023
|
+
- spec/unit/file_access_control_spec.rb
|
1024
|
+
- spec/unit/run_status_spec.rb
|
1025
|
+
- spec/unit/mash_spec.rb
|
1026
|
+
- spec/unit/rest_spec.rb
|
1027
|
+
- spec/unit/daemon_spec.rb
|
1028
|
+
- spec/unit/chef_spec.rb
|
1304
1029
|
- spec/unit/provider/execute_spec.rb
|
1305
1030
|
- spec/unit/provider/file_spec.rb
|
1031
|
+
- spec/unit/provider/user_spec.rb
|
1032
|
+
- spec/unit/provider/cookbook_file_spec.rb
|
1033
|
+
- spec/unit/provider/cron_spec.rb
|
1034
|
+
- spec/unit/provider/link_spec.rb
|
1035
|
+
- spec/unit/provider/mount_spec.rb
|
1036
|
+
- spec/unit/provider/remote_directory_spec.rb
|
1037
|
+
- spec/unit/provider/breakpoint_spec.rb
|
1306
1038
|
- spec/unit/provider/git_spec.rb
|
1307
|
-
- spec/unit/provider/group/dscl_spec.rb
|
1308
|
-
- spec/unit/provider/group/gpasswd_spec.rb
|
1309
|
-
- spec/unit/provider/group/groupadd_spec.rb
|
1310
|
-
- spec/unit/provider/group/groupmod_spec.rb
|
1311
|
-
- spec/unit/provider/group/pw_spec.rb
|
1312
|
-
- spec/unit/provider/group/usermod_spec.rb
|
1313
|
-
- spec/unit/provider/group/windows_spec.rb
|
1314
1039
|
- spec/unit/provider/group_spec.rb
|
1315
1040
|
- spec/unit/provider/http_request_spec.rb
|
1316
|
-
- spec/unit/provider/
|
1317
|
-
- spec/unit/provider/
|
1041
|
+
- spec/unit/provider/erl_call_spec.rb
|
1042
|
+
- spec/unit/provider/template_spec.rb
|
1043
|
+
- spec/unit/provider/deploy_spec.rb
|
1318
1044
|
- spec/unit/provider/log_spec.rb
|
1319
|
-
- spec/unit/provider/
|
1045
|
+
- spec/unit/provider/route_spec.rb
|
1046
|
+
- spec/unit/provider/registry_key_spec.rb
|
1047
|
+
- spec/unit/provider/deploy/timestamped_spec.rb
|
1048
|
+
- spec/unit/provider/deploy/revision_spec.rb
|
1049
|
+
- spec/unit/provider/user/useradd_spec.rb
|
1050
|
+
- spec/unit/provider/user/dscl_spec.rb
|
1051
|
+
- spec/unit/provider/user/windows_spec.rb
|
1052
|
+
- spec/unit/provider/user/pw_spec.rb
|
1320
1053
|
- spec/unit/provider/mount/mount_spec.rb
|
1321
1054
|
- spec/unit/provider/mount/windows_spec.rb
|
1322
|
-
- spec/unit/provider/
|
1055
|
+
- spec/unit/provider/package_spec.rb
|
1056
|
+
- spec/unit/provider/service_spec.rb
|
1057
|
+
- spec/unit/provider/ifconfig_spec.rb
|
1058
|
+
- spec/unit/provider/subversion_spec.rb
|
1059
|
+
- spec/unit/provider/cron/solaris_spec.rb
|
1060
|
+
- spec/unit/provider/service/init_service_spec.rb
|
1061
|
+
- spec/unit/provider/service/solaris_smf_service_spec.rb
|
1062
|
+
- spec/unit/provider/service/invokercd_service_spec.rb
|
1063
|
+
- spec/unit/provider/service/insserv_service_spec.rb
|
1064
|
+
- spec/unit/provider/service/gentoo_service_spec.rb
|
1065
|
+
- spec/unit/provider/service/redhat_spec.rb
|
1066
|
+
- spec/unit/provider/service/macosx_spec.rb
|
1067
|
+
- spec/unit/provider/service/debian_service_spec.rb
|
1068
|
+
- spec/unit/provider/service/simple_service_spec.rb
|
1069
|
+
- spec/unit/provider/service/arch_service_spec.rb
|
1070
|
+
- spec/unit/provider/service/upstart_service_spec.rb
|
1071
|
+
- spec/unit/provider/service/freebsd_service_spec.rb
|
1072
|
+
- spec/unit/provider/service/windows_spec.rb
|
1073
|
+
- spec/unit/provider/service/systemd_service_spec.rb
|
1074
|
+
- spec/unit/provider/script_spec.rb
|
1323
1075
|
- spec/unit/provider/ohai_spec.rb
|
1324
|
-
- spec/unit/provider/
|
1325
|
-
- spec/unit/provider/package/dpkg_spec.rb
|
1076
|
+
- spec/unit/provider/env_spec.rb
|
1326
1077
|
- spec/unit/provider/package/easy_install_spec.rb
|
1327
|
-
- spec/unit/provider/package/freebsd_spec.rb
|
1328
|
-
- spec/unit/provider/package/ips_spec.rb
|
1329
1078
|
- spec/unit/provider/package/macports_spec.rb
|
1330
1079
|
- spec/unit/provider/package/pacman_spec.rb
|
1331
|
-
- spec/unit/provider/package/portage_spec.rb
|
1332
1080
|
- spec/unit/provider/package/rpm_spec.rb
|
1333
|
-
- spec/unit/provider/package/rubygems_spec.rb
|
1334
1081
|
- spec/unit/provider/package/smartos_spec.rb
|
1082
|
+
- spec/unit/provider/package/apt_spec.rb
|
1083
|
+
- spec/unit/provider/package/ips_spec.rb
|
1084
|
+
- spec/unit/provider/package/freebsd_spec.rb
|
1085
|
+
- spec/unit/provider/package/zypper_spec.rb
|
1335
1086
|
- spec/unit/provider/package/solaris_spec.rb
|
1087
|
+
- spec/unit/provider/package/rubygems_spec.rb
|
1088
|
+
- spec/unit/provider/package/dpkg_spec.rb
|
1336
1089
|
- spec/unit/provider/package/yum_spec.rb
|
1337
|
-
- spec/unit/provider/package/
|
1338
|
-
- spec/unit/provider/
|
1339
|
-
- spec/unit/provider/registry_key_spec.rb
|
1340
|
-
- spec/unit/provider/remote_directory_spec.rb
|
1090
|
+
- spec/unit/provider/package/portage_spec.rb
|
1091
|
+
- spec/unit/provider/directory_spec.rb
|
1341
1092
|
- spec/unit/provider/remote_file_spec.rb
|
1342
|
-
- spec/unit/provider/
|
1093
|
+
- spec/unit/provider/mdadm_spec.rb
|
1343
1094
|
- spec/unit/provider/ruby_block_spec.rb
|
1344
|
-
- spec/unit/provider/
|
1345
|
-
- spec/unit/provider/
|
1346
|
-
- spec/unit/provider/
|
1347
|
-
- spec/unit/provider/
|
1348
|
-
- spec/unit/provider/
|
1349
|
-
- spec/unit/provider/
|
1350
|
-
- spec/unit/provider/
|
1351
|
-
- spec/unit/
|
1352
|
-
- spec/unit/
|
1353
|
-
- spec/unit/
|
1354
|
-
- spec/unit/
|
1355
|
-
- spec/unit/
|
1356
|
-
- spec/unit/
|
1357
|
-
- spec/unit/
|
1358
|
-
- spec/unit/
|
1359
|
-
- spec/unit/
|
1360
|
-
- spec/unit/
|
1361
|
-
- spec/unit/
|
1362
|
-
- spec/unit/
|
1363
|
-
- spec/unit/
|
1364
|
-
- spec/unit/
|
1365
|
-
- spec/unit/
|
1366
|
-
- spec/unit/
|
1367
|
-
- spec/unit/
|
1368
|
-
- spec/unit/
|
1369
|
-
- spec/unit/
|
1370
|
-
- spec/unit/
|
1371
|
-
- spec/unit/
|
1372
|
-
- spec/unit/
|
1373
|
-
- spec/unit/
|
1374
|
-
- spec/unit/
|
1095
|
+
- spec/unit/provider/group/usermod_spec.rb
|
1096
|
+
- spec/unit/provider/group/gpasswd_spec.rb
|
1097
|
+
- spec/unit/provider/group/groupmod_spec.rb
|
1098
|
+
- spec/unit/provider/group/dscl_spec.rb
|
1099
|
+
- spec/unit/provider/group/groupadd_spec.rb
|
1100
|
+
- spec/unit/provider/group/windows_spec.rb
|
1101
|
+
- spec/unit/provider/group/pw_spec.rb
|
1102
|
+
- spec/unit/run_list_spec.rb
|
1103
|
+
- spec/unit/search/query_spec.rb
|
1104
|
+
- spec/unit/knife/client_show_spec.rb
|
1105
|
+
- spec/unit/knife/tag_create_spec.rb
|
1106
|
+
- spec/unit/knife/cookbook_delete_spec.rb
|
1107
|
+
- spec/unit/knife/cookbook_site_unshare_spec.rb
|
1108
|
+
- spec/unit/knife/role_bulk_delete_spec.rb
|
1109
|
+
- spec/unit/knife/cookbook_bulk_delete_spec.rb
|
1110
|
+
- spec/unit/knife/client_delete_spec.rb
|
1111
|
+
- spec/unit/knife/index_rebuild_spec.rb
|
1112
|
+
- spec/unit/knife/cookbook_metadata_spec.rb
|
1113
|
+
- spec/unit/knife/cookbook_site_install_spec.rb
|
1114
|
+
- spec/unit/knife/client_reregister_spec.rb
|
1115
|
+
- spec/unit/knife/data_bag_create_spec.rb
|
1116
|
+
- spec/unit/knife/knife_help.rb
|
1117
|
+
- spec/unit/knife/configure_spec.rb
|
1118
|
+
- spec/unit/knife/node_list_spec.rb
|
1119
|
+
- spec/unit/knife/cookbook_list_spec.rb
|
1120
|
+
- spec/unit/knife/role_delete_spec.rb
|
1121
|
+
- spec/unit/knife/environment_list_spec.rb
|
1122
|
+
- spec/unit/knife/client_bulk_delete_spec.rb
|
1123
|
+
- spec/unit/knife/environment_show_spec.rb
|
1124
|
+
- spec/unit/knife/tag_list_spec.rb
|
1125
|
+
- spec/unit/knife/node_edit_spec.rb
|
1126
|
+
- spec/unit/knife/node_bulk_delete_spec.rb
|
1127
|
+
- spec/unit/knife/role_edit_spec.rb
|
1128
|
+
- spec/unit/knife/client_list_spec.rb
|
1129
|
+
- spec/unit/knife/node_show_spec.rb
|
1130
|
+
- spec/unit/knife/cookbook_site_share_spec.rb
|
1131
|
+
- spec/unit/knife/cookbook_upload_spec.rb
|
1132
|
+
- spec/unit/knife/role_from_file_spec.rb
|
1133
|
+
- spec/unit/knife/node_run_list_add_spec.rb
|
1134
|
+
- spec/unit/knife/cookbook_site_download_spec.rb
|
1135
|
+
- spec/unit/knife/status_spec.rb
|
1136
|
+
- spec/unit/knife/configure_client_spec.rb
|
1137
|
+
- spec/unit/knife/ssh_spec.rb
|
1138
|
+
- spec/unit/knife/cookbook_metadata_from_file_spec.rb
|
1139
|
+
- spec/unit/knife/core/ui_spec.rb
|
1140
|
+
- spec/unit/knife/core/subcommand_loader_spec.rb
|
1141
|
+
- spec/unit/knife/core/object_loader_spec.rb
|
1142
|
+
- spec/unit/knife/core/cookbook_scm_repo_spec.rb
|
1143
|
+
- spec/unit/knife/core/bootstrap_context_spec.rb
|
1144
|
+
- spec/unit/knife/node_from_file_spec.rb
|
1145
|
+
- spec/unit/knife/config_file_selection_spec.rb
|
1146
|
+
- spec/unit/knife/client_edit_spec.rb
|
1147
|
+
- spec/unit/knife/environment_delete_spec.rb
|
1148
|
+
- spec/unit/knife/data_bag_from_file_spec.rb
|
1149
|
+
- spec/unit/knife/role_create_spec.rb
|
1150
|
+
- spec/unit/knife/bootstrap_spec.rb
|
1151
|
+
- spec/unit/knife/client_create_spec.rb
|
1152
|
+
- spec/unit/knife/cookbook_show_spec.rb
|
1153
|
+
- spec/unit/knife/data_bag_edit_spec.rb
|
1154
|
+
- spec/unit/knife/environment_from_file_spec.rb
|
1155
|
+
- spec/unit/knife/environment_edit_spec.rb
|
1156
|
+
- spec/unit/knife/cookbook_create_spec.rb
|
1157
|
+
- spec/unit/knife/cookbook_download_spec.rb
|
1158
|
+
- spec/unit/knife/role_list_spec.rb
|
1159
|
+
- spec/unit/knife/node_run_list_remove_spec.rb
|
1160
|
+
- spec/unit/knife/tag_delete_spec.rb
|
1161
|
+
- spec/unit/knife/node_delete_spec.rb
|
1162
|
+
- spec/unit/knife/cookbook_test_spec.rb
|
1163
|
+
- spec/unit/knife/data_bag_show_spec.rb
|
1164
|
+
- spec/unit/knife/environment_create_spec.rb
|
1165
|
+
- spec/unit/runner_spec.rb
|
1166
|
+
- spec/unit/resource/timestamped_deploy_spec.rb
|
1167
|
+
- spec/unit/resource/execute_spec.rb
|
1168
|
+
- spec/unit/resource/file_spec.rb
|
1169
|
+
- spec/unit/resource/user_spec.rb
|
1375
1170
|
- spec/unit/resource/cookbook_file_spec.rb
|
1376
1171
|
- spec/unit/resource/cron_spec.rb
|
1377
|
-
- spec/unit/resource/csh_spec.rb
|
1378
|
-
- spec/unit/resource/deploy_revision_spec.rb
|
1379
|
-
- spec/unit/resource/deploy_spec.rb
|
1380
|
-
- spec/unit/resource/directory_spec.rb
|
1381
|
-
- spec/unit/resource/dpkg_package_spec.rb
|
1382
1172
|
- spec/unit/resource/easy_install_package_spec.rb
|
1383
|
-
- spec/unit/resource/
|
1384
|
-
- spec/unit/resource/
|
1385
|
-
- spec/unit/resource/
|
1386
|
-
- spec/unit/resource/
|
1387
|
-
- spec/unit/resource/
|
1388
|
-
- spec/unit/resource/
|
1173
|
+
- spec/unit/resource/link_spec.rb
|
1174
|
+
- spec/unit/resource/perl_spec.rb
|
1175
|
+
- spec/unit/resource/chef_gem_spec.rb
|
1176
|
+
- spec/unit/resource/mount_spec.rb
|
1177
|
+
- spec/unit/resource/remote_directory_spec.rb
|
1178
|
+
- spec/unit/resource/ips_package_spec.rb
|
1179
|
+
- spec/unit/resource/rpm_package_spec.rb
|
1180
|
+
- spec/unit/resource/macports_package_spec.rb
|
1181
|
+
- spec/unit/resource/breakpoint_spec.rb
|
1389
1182
|
- spec/unit/resource/git_spec.rb
|
1183
|
+
- spec/unit/resource/freebsd_package_spec.rb
|
1390
1184
|
- spec/unit/resource/group_spec.rb
|
1391
1185
|
- spec/unit/resource/http_request_spec.rb
|
1392
|
-
- spec/unit/resource/
|
1393
|
-
- spec/unit/resource/
|
1394
|
-
- spec/unit/resource/
|
1186
|
+
- spec/unit/resource/smartos_package_spec.rb
|
1187
|
+
- spec/unit/resource/bash_spec.rb
|
1188
|
+
- spec/unit/resource/gem_package_spec.rb
|
1189
|
+
- spec/unit/resource/conditional_spec.rb
|
1190
|
+
- spec/unit/resource/erl_call_spec.rb
|
1191
|
+
- spec/unit/resource/template_spec.rb
|
1192
|
+
- spec/unit/resource/dpkg_package_spec.rb
|
1193
|
+
- spec/unit/resource/deploy_spec.rb
|
1395
1194
|
- spec/unit/resource/log_spec.rb
|
1396
|
-
- spec/unit/resource/
|
1397
|
-
- spec/unit/resource/
|
1398
|
-
- spec/unit/resource/
|
1399
|
-
- spec/unit/resource/
|
1400
|
-
- spec/unit/resource/
|
1195
|
+
- spec/unit/resource/apt_package_spec.rb
|
1196
|
+
- spec/unit/resource/route_spec.rb
|
1197
|
+
- spec/unit/resource/registry_key_spec.rb
|
1198
|
+
- spec/unit/resource/deploy_revision_spec.rb
|
1199
|
+
- spec/unit/resource/python_spec.rb
|
1401
1200
|
- spec/unit/resource/pacman_package_spec.rb
|
1402
|
-
- spec/unit/resource/perl_spec.rb
|
1403
1201
|
- spec/unit/resource/portage_package_spec.rb
|
1404
|
-
- spec/unit/resource/
|
1405
|
-
- spec/unit/resource/
|
1406
|
-
- spec/unit/resource/remote_directory_spec.rb
|
1407
|
-
- spec/unit/resource/remote_file_spec.rb
|
1408
|
-
- spec/unit/resource/route_spec.rb
|
1409
|
-
- spec/unit/resource/rpm_package_spec.rb
|
1410
|
-
- spec/unit/resource/ruby_block_spec.rb
|
1411
|
-
- spec/unit/resource/ruby_spec.rb
|
1412
|
-
- spec/unit/resource/scm_spec.rb
|
1413
|
-
- spec/unit/resource/script_spec.rb
|
1202
|
+
- spec/unit/resource/package_spec.rb
|
1203
|
+
- spec/unit/resource/csh_spec.rb
|
1414
1204
|
- spec/unit/resource/service_spec.rb
|
1415
|
-
- spec/unit/resource/
|
1205
|
+
- spec/unit/resource/ifconfig_spec.rb
|
1416
1206
|
- spec/unit/resource/subversion_spec.rb
|
1417
|
-
- spec/unit/resource/template_spec.rb
|
1418
|
-
- spec/unit/resource/timestamped_deploy_spec.rb
|
1419
|
-
- spec/unit/resource/user_spec.rb
|
1420
1207
|
- spec/unit/resource/yum_package_spec.rb
|
1421
|
-
- spec/unit/
|
1422
|
-
- spec/unit/
|
1423
|
-
- spec/unit/
|
1424
|
-
- spec/unit/
|
1425
|
-
- spec/unit/
|
1426
|
-
- spec/unit/
|
1427
|
-
- spec/unit/
|
1428
|
-
- spec/unit/
|
1429
|
-
- spec/unit/
|
1430
|
-
- spec/unit/run_context/cookbook_compiler_spec.rb
|
1431
|
-
- spec/unit/run_context_spec.rb
|
1432
|
-
- spec/unit/run_list/run_list_expansion_spec.rb
|
1433
|
-
- spec/unit/run_list/run_list_item_spec.rb
|
1434
|
-
- spec/unit/run_list/versioned_recipe_list_spec.rb
|
1435
|
-
- spec/unit/run_list_spec.rb
|
1436
|
-
- spec/unit/run_lock_spec.rb
|
1437
|
-
- spec/unit/run_status_spec.rb
|
1438
|
-
- spec/unit/runner_spec.rb
|
1439
|
-
- spec/unit/scan_access_control_spec.rb
|
1440
|
-
- spec/unit/search/query_spec.rb
|
1441
|
-
- spec/unit/shell/model_wrapper_spec.rb
|
1442
|
-
- spec/unit/shell/shell_ext_spec.rb
|
1443
|
-
- spec/unit/shell/shell_session_spec.rb
|
1208
|
+
- spec/unit/resource/script_spec.rb
|
1209
|
+
- spec/unit/resource/ruby_spec.rb
|
1210
|
+
- spec/unit/resource/ohai_spec.rb
|
1211
|
+
- spec/unit/resource/scm_spec.rb
|
1212
|
+
- spec/unit/resource/env_spec.rb
|
1213
|
+
- spec/unit/resource/directory_spec.rb
|
1214
|
+
- spec/unit/resource/remote_file_spec.rb
|
1215
|
+
- spec/unit/resource/mdadm_spec.rb
|
1216
|
+
- spec/unit/resource/ruby_block_spec.rb
|
1444
1217
|
- spec/unit/shell_out_spec.rb
|
1445
|
-
- spec/unit/
|
1446
|
-
- spec/unit/
|
1447
|
-
- spec/unit/
|
1448
|
-
- spec/unit/
|
1218
|
+
- spec/unit/application/knife_spec.rb
|
1219
|
+
- spec/unit/application/server_spec.rb
|
1220
|
+
- spec/unit/application/solo_spec.rb
|
1221
|
+
- spec/unit/application/client_spec.rb
|
1222
|
+
- spec/unit/application/agent_spec.rb
|
1223
|
+
- spec/unit/application/apply.rb
|
1224
|
+
- spec/spec_helper.rb
|
1225
|
+
- spec/stress/win32/file_spec.rb
|
1226
|
+
- spec/stress/win32/security_spec.rb
|
1227
|
+
- spec/stress/win32/memory_spec.rb
|
1228
|
+
- spec/tiny_server.rb
|
1229
|
+
- spec/support/shared/unit/platform_introspector.rb
|
1230
|
+
- spec/support/shared/unit/file_system_support.rb
|
1231
|
+
- spec/support/shared/unit/api_error_inspector.rb
|
1232
|
+
- spec/support/shared/functional/file_resource.rb
|
1233
|
+
- spec/support/shared/functional/directory_resource.rb
|
1234
|
+
- spec/support/shared/functional/knife.rb
|
1235
|
+
- spec/support/shared/functional/securable_resource.rb
|
1236
|
+
- spec/support/shared/functional/securable_resource_with_reporting.rb
|
1237
|
+
- spec/support/platforms/prof/win32.rb
|
1238
|
+
- spec/support/platforms/prof/gc.rb
|
1239
|
+
- spec/support/lib/chef/provider/snakeoil.rb
|
1240
|
+
- spec/support/lib/chef/provider/easy.rb
|
1241
|
+
- spec/support/lib/chef/resource/one_two_three_four.rb
|
1242
|
+
- spec/support/lib/chef/resource/cat.rb
|
1243
|
+
- spec/support/lib/chef/resource/zen_master.rb
|
1244
|
+
- spec/support/mock/platform.rb
|
1245
|
+
- spec/support/mock/constant.rb
|
1246
|
+
- spec/support/platform_helpers.rb
|
1247
|
+
- spec/support/chef_helpers.rb
|
1248
|
+
- spec/support/matchers/leak.rb
|
1249
|
+
- spec/data/definitions/test.rb
|
1250
|
+
- spec/data/templates/seattle.txt
|
1251
|
+
- spec/data/shef-config.rb
|
1252
|
+
- spec/data/old_home_dir/my-dot-vim
|
1253
|
+
- spec/data/old_home_dir/my-dot-emacs
|
1254
|
+
- spec/data/metadata/quick_start/metadata.rb
|
1255
|
+
- spec/data/bad-config.rb
|
1256
|
+
- spec/data/run_context/cookbooks/test/definitions/new_animals.rb
|
1257
|
+
- spec/data/run_context/cookbooks/test/definitions/new_cat.rb
|
1258
|
+
- spec/data/run_context/cookbooks/test/definitions/test_res.rb
|
1259
|
+
- spec/data/run_context/cookbooks/test/attributes/george.rb
|
1260
|
+
- spec/data/run_context/cookbooks/test/attributes/default.rb
|
1261
|
+
- spec/data/run_context/cookbooks/test/recipes/two.rb
|
1262
|
+
- spec/data/run_context/cookbooks/test/recipes/one.rb
|
1263
|
+
- spec/data/run_context/cookbooks/test/recipes/default.rb
|
1264
|
+
- spec/data/run_context/cookbooks/test/resources/resource.rb
|
1265
|
+
- spec/data/run_context/cookbooks/test/providers/provider.rb
|
1266
|
+
- spec/data/run_context/cookbooks/no-default-attr/definitions/no_default-attr_res.rb
|
1267
|
+
- spec/data/run_context/cookbooks/no-default-attr/attributes/server.rb
|
1268
|
+
- spec/data/run_context/cookbooks/no-default-attr/recipes/default.rb
|
1269
|
+
- spec/data/run_context/cookbooks/no-default-attr/resources/resource.rb
|
1270
|
+
- spec/data/run_context/cookbooks/no-default-attr/providers/provider.rb
|
1271
|
+
- spec/data/run_context/cookbooks/circular-dep1/definitions/circular_dep1_res.rb
|
1272
|
+
- spec/data/run_context/cookbooks/circular-dep1/attributes/default.rb
|
1273
|
+
- spec/data/run_context/cookbooks/circular-dep1/libraries/lib.rb
|
1274
|
+
- spec/data/run_context/cookbooks/circular-dep1/recipes/default.rb
|
1275
|
+
- spec/data/run_context/cookbooks/circular-dep1/resources/resource.rb
|
1276
|
+
- spec/data/run_context/cookbooks/circular-dep1/metadata.rb
|
1277
|
+
- spec/data/run_context/cookbooks/circular-dep1/providers/provider.rb
|
1278
|
+
- spec/data/run_context/cookbooks/dependency2/definitions/dependency2_res.rb
|
1279
|
+
- spec/data/run_context/cookbooks/dependency2/attributes/default.rb
|
1280
|
+
- spec/data/run_context/cookbooks/dependency2/libraries/lib.rb
|
1281
|
+
- spec/data/run_context/cookbooks/dependency2/recipes/default.rb
|
1282
|
+
- spec/data/run_context/cookbooks/dependency2/resources/resource.rb
|
1283
|
+
- spec/data/run_context/cookbooks/dependency2/providers/provider.rb
|
1284
|
+
- spec/data/run_context/cookbooks/circular-dep2/definitions/circular_dep2_res.rb
|
1285
|
+
- spec/data/run_context/cookbooks/circular-dep2/attributes/default.rb
|
1286
|
+
- spec/data/run_context/cookbooks/circular-dep2/libraries/lib.rb
|
1287
|
+
- spec/data/run_context/cookbooks/circular-dep2/recipes/default.rb
|
1288
|
+
- spec/data/run_context/cookbooks/circular-dep2/resources/resource.rb
|
1289
|
+
- spec/data/run_context/cookbooks/circular-dep2/metadata.rb
|
1290
|
+
- spec/data/run_context/cookbooks/circular-dep2/providers/provider.rb
|
1291
|
+
- spec/data/run_context/cookbooks/test-with-deps/definitions/test_with-deps_res.rb
|
1292
|
+
- spec/data/run_context/cookbooks/test-with-deps/attributes/default.rb
|
1293
|
+
- spec/data/run_context/cookbooks/test-with-deps/libraries/lib.rb
|
1294
|
+
- spec/data/run_context/cookbooks/test-with-deps/recipes/default.rb
|
1295
|
+
- spec/data/run_context/cookbooks/test-with-deps/recipes/server.rb
|
1296
|
+
- spec/data/run_context/cookbooks/test-with-deps/resources/resource.rb
|
1297
|
+
- spec/data/run_context/cookbooks/test-with-deps/metadata.rb
|
1298
|
+
- spec/data/run_context/cookbooks/test-with-deps/providers/provider.rb
|
1299
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/definitions/test_with-circular-deps_res.rb
|
1300
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/attributes/default.rb
|
1301
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/libraries/lib.rb
|
1302
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/recipes/default.rb
|
1303
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/resources/resource.rb
|
1304
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/metadata.rb
|
1305
|
+
- spec/data/run_context/cookbooks/test-with-circular-deps/providers/provider.rb
|
1306
|
+
- spec/data/run_context/cookbooks/dependency1/definitions/dependency1_res.rb
|
1307
|
+
- spec/data/run_context/cookbooks/dependency1/attributes/default.rb
|
1308
|
+
- spec/data/run_context/cookbooks/dependency1/attributes/zz_last.rb
|
1309
|
+
- spec/data/run_context/cookbooks/dependency1/attributes/aa_first.rb
|
1310
|
+
- spec/data/run_context/cookbooks/dependency1/libraries/lib.rb
|
1311
|
+
- spec/data/run_context/cookbooks/dependency1/recipes/default.rb
|
1312
|
+
- spec/data/run_context/cookbooks/dependency1/resources/resource.rb
|
1313
|
+
- spec/data/run_context/cookbooks/dependency1/providers/provider.rb
|
1314
|
+
- spec/data/run_context/nodes/run_context.rb
|
1315
|
+
- spec/data/environment-config.rb
|
1316
|
+
- spec/data/checksum/random.txt
|
1317
|
+
- spec/data/search_queries_to_transform.txt
|
1318
|
+
- spec/data/cookbooks/openldap/definitions/client.rb
|
1319
|
+
- spec/data/cookbooks/openldap/definitions/server.rb
|
1320
|
+
- spec/data/cookbooks/openldap/templates/default/test.erb
|
1321
|
+
- spec/data/cookbooks/openldap/templates/default/openldap_variable_stuff.conf.erb
|
1322
|
+
- spec/data/cookbooks/openldap/templates/default/openldap_stuff.conf.erb
|
1323
|
+
- spec/data/cookbooks/openldap/attributes/default.rb
|
1324
|
+
- spec/data/cookbooks/openldap/attributes/smokey.rb
|
1325
|
+
- spec/data/cookbooks/openldap/recipes/gigantor.rb
|
1326
|
+
- spec/data/cookbooks/openldap/recipes/one.rb
|
1327
|
+
- spec/data/cookbooks/openldap/recipes/default.rb
|
1328
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file1.txt
|
1329
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/subdir_with_no_file_just_a_subsubdir/the_subsubdir/some_file.txt
|
1330
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remote_dir_file2.txt
|
1331
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file2.txt
|
1332
|
+
- spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/remote_subdir_file1.txt
|
1333
|
+
- spec/data/cookbooks/angrybash/recipes/default.rb
|
1334
|
+
- spec/data/cookbooks/apache2/recipes/default.rb
|
1335
|
+
- spec/data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
|
1336
|
+
- spec/data/cookbooks/java/files/default/java.response
|
1337
|
+
- spec/data/cookbooks/borken/templates/default/borken.erb
|
1338
|
+
- spec/data/cookbooks/borken/recipes/default.rb
|
1339
|
+
- spec/data/cookbooks/chefignore
|
1340
|
+
- spec/data/big_json.json
|
1341
|
+
- spec/data/recipes/test.rb
|
1342
|
+
- spec/data/knife_subcommand/test_explicit_category.rb
|
1343
|
+
- spec/data/knife_subcommand/test_yourself.rb
|
1344
|
+
- spec/data/knife_subcommand/test_name_mapping.rb
|
1345
|
+
- spec/data/object_loader/environments/test.json
|
1346
|
+
- spec/data/object_loader/environments/test_json_class.json
|
1347
|
+
- spec/data/object_loader/environments/test.rb
|
1348
|
+
- spec/data/object_loader/roles/test.json
|
1349
|
+
- spec/data/object_loader/roles/test_json_class.json
|
1350
|
+
- spec/data/object_loader/roles/test.rb
|
1351
|
+
- spec/data/object_loader/nodes/test.json
|
1352
|
+
- spec/data/object_loader/nodes/test_json_class.json
|
1353
|
+
- spec/data/object_loader/nodes/test.rb
|
1354
|
+
- spec/data/partial_one.erb
|
1355
|
+
- spec/data/gems/chef-integration-test-0.1.0.gem
|
1356
|
+
- spec/data/config.rb
|
1357
|
+
- spec/data/big_json_plus_one.json
|
1358
|
+
- spec/data/git_bundles/sinatra-test-app.gitbundle
|
1359
|
+
- spec/data/git_bundles/sinatra-test-app-with-callback-files.gitbundle
|
1360
|
+
- spec/data/git_bundles/sinatra-test-app-with-symlinks.gitbundle
|
1361
|
+
- spec/data/lwrp_override/resources/foo.rb
|
1362
|
+
- spec/data/lwrp_override/providers/buck_passer.rb
|
1363
|
+
- spec/data/cb_version_cookbooks/tatft/definitions/runit_service.rb
|
1364
|
+
- spec/data/cb_version_cookbooks/tatft/templates/default/configuration.erb
|
1365
|
+
- spec/data/cb_version_cookbooks/tatft/attributes/default.rb
|
1366
|
+
- spec/data/cb_version_cookbooks/tatft/libraries/ownage.rb
|
1367
|
+
- spec/data/cb_version_cookbooks/tatft/README.rdoc
|
1368
|
+
- spec/data/cb_version_cookbooks/tatft/recipes/default.rb
|
1369
|
+
- spec/data/cb_version_cookbooks/tatft/resources/lwr.rb
|
1370
|
+
- spec/data/cb_version_cookbooks/tatft/files/default/giant_blob.tgz
|
1371
|
+
- spec/data/cb_version_cookbooks/tatft/providers/lwp.rb
|
1372
|
+
- spec/data/remote_directory_data/remote_subdirectory/remote_subdir_file.txt
|
1373
|
+
- spec/data/remote_directory_data/remote_dir_file.txt
|
1374
|
+
- spec/data/knife-site-subcommands/plugins/knife/example_subcommand.rb
|
1375
|
+
- spec/data/bootstrap/test.erb
|
1376
|
+
- spec/data/bootstrap/test-hints.erb
|
1377
|
+
- spec/data/remote_file/nyan_cat.png
|
1378
|
+
- spec/data/nodes/test.example.com.rb
|
1379
|
+
- spec/data/nodes/default.rb
|
1380
|
+
- spec/data/nodes/test.rb
|
1381
|
+
- spec/data/ssl/private_key_with_whitespace.pem
|
1382
|
+
- spec/data/ssl/key.pem
|
1383
|
+
- spec/data/ssl/5e707473.0
|
1384
|
+
- spec/data/ssl/chef-rspec.key
|
1385
|
+
- spec/data/ssl/private_key.pem
|
1386
|
+
- spec/data/ssl/chef-rspec.cert
|
1387
|
+
- spec/data/fileedit/blank
|
1388
|
+
- spec/data/fileedit/hosts
|
1389
|
+
- spec/data/kitchen/openldap/definitions/drewbarrymore.rb
|
1390
|
+
- spec/data/kitchen/openldap/definitions/client.rb
|
1391
|
+
- spec/data/kitchen/openldap/attributes/default.rb
|
1392
|
+
- spec/data/kitchen/openldap/attributes/robinson.rb
|
1393
|
+
- spec/data/kitchen/openldap/recipes/ignoreme.rb
|
1394
|
+
- spec/data/kitchen/openldap/recipes/gigantor.rb
|
1395
|
+
- spec/data/kitchen/openldap/recipes/woot.rb
|
1396
|
+
- spec/data/kitchen/chefignore
|
1397
|
+
- spec/data/lwrp/resources_with_default_attributes/nodeattr.rb
|
1398
|
+
- spec/data/lwrp/resources/bar.rb
|
1399
|
+
- spec/data/lwrp/resources/foo.rb
|
1400
|
+
- spec/data/lwrp/providers/embedded_resource_accesses_providers_scope.rb
|
1401
|
+
- spec/data/lwrp/providers/paint_drying_watcher.rb
|
1402
|
+
- spec/data/lwrp/providers/buck_passer_2.rb
|
1403
|
+
- spec/data/lwrp/providers/thumb_twiddler.rb
|
1404
|
+
- spec/data/lwrp/providers/buck_passer.rb
|
1405
|
+
- spec/data/lwrp/providers/inline_compiler.rb
|
1406
|
+
- spec/data/lwrp/providers/monkey_name_printer.rb
|
1407
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-api8ux-0
|
1408
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t8g0sv-0
|
1409
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-6m8zdk-0
|
1410
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-pgsq76-0
|
1411
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-xi0l6h-0
|
1412
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-t7k1g-0
|
1413
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-kkbs85-0
|
1414
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ahd2gq-0
|
1415
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-b0r1m1-0
|
1416
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ufy6g3-0
|
1417
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ory1ux-0
|
1418
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ra8uim-0
|
1419
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-ivrl3y-0
|
1420
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-600hhz-0
|
1421
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-bfygsi-0
|
1422
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-el14l6-0
|
1423
|
+
- spec/data/checksum_cache/chef-file--tmp-chef-rendered-template20100929-10863-x2d6j9-0
|
1424
|
+
- spec/rcov.opts
|
1425
|
+
- spec/functional/shell_spec.rb
|
1426
|
+
- spec/functional/dsl/registry_helper_spec.rb
|
1427
|
+
- spec/functional/tiny_server_spec.rb
|
1428
|
+
- spec/functional/run_lock_spec.rb
|
1429
|
+
- spec/functional/win32/registry_helper_spec.rb
|
1430
|
+
- spec/functional/win32/security_spec.rb
|
1431
|
+
- spec/functional/knife/cookbook_delete_spec.rb
|
1432
|
+
- spec/functional/knife/exec_spec.rb
|
1433
|
+
- spec/functional/knife/ssh_spec.rb
|
1434
|
+
- spec/functional/knife/smoke_test.rb
|
1435
|
+
- spec/functional/resource/file_spec.rb
|
1436
|
+
- spec/functional/resource/cookbook_file_spec.rb
|
1437
|
+
- spec/functional/resource/link_spec.rb
|
1438
|
+
- spec/functional/resource/remote_directory_spec.rb
|
1439
|
+
- spec/functional/resource/template_spec.rb
|
1440
|
+
- spec/functional/resource/deploy_revision_spec.rb
|
1441
|
+
- spec/functional/resource/registry_spec.rb
|
1442
|
+
- spec/functional/resource/directory_spec.rb
|
1443
|
+
- spec/functional/resource/remote_file_spec.rb
|
1449
1444
|
- bin/chef-client
|
1450
1445
|
- bin/chef-solo
|
1451
1446
|
- bin/knife
|
@@ -1454,27 +1449,38 @@ files:
|
|
1454
1449
|
- bin/chef-apply
|
1455
1450
|
homepage: http://wiki.opscode.com/display/chef
|
1456
1451
|
licenses: []
|
1452
|
+
|
1457
1453
|
post_install_message:
|
1458
1454
|
rdoc_options: []
|
1459
|
-
|
1455
|
+
|
1456
|
+
require_paths:
|
1460
1457
|
- lib
|
1461
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1458
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1462
1459
|
none: false
|
1463
|
-
requirements:
|
1464
|
-
- -
|
1465
|
-
- !ruby/object:Gem::Version
|
1466
|
-
|
1467
|
-
|
1460
|
+
requirements:
|
1461
|
+
- - ">="
|
1462
|
+
- !ruby/object:Gem::Version
|
1463
|
+
hash: 3
|
1464
|
+
segments:
|
1465
|
+
- 0
|
1466
|
+
version: "0"
|
1467
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1468
1468
|
none: false
|
1469
|
-
requirements:
|
1470
|
-
- -
|
1471
|
-
- !ruby/object:Gem::Version
|
1469
|
+
requirements:
|
1470
|
+
- - ">"
|
1471
|
+
- !ruby/object:Gem::Version
|
1472
|
+
hash: 25
|
1473
|
+
segments:
|
1474
|
+
- 1
|
1475
|
+
- 3
|
1476
|
+
- 1
|
1472
1477
|
version: 1.3.1
|
1473
1478
|
requirements: []
|
1479
|
+
|
1474
1480
|
rubyforge_project:
|
1475
|
-
rubygems_version: 1.8.
|
1481
|
+
rubygems_version: 1.8.10
|
1476
1482
|
signing_key:
|
1477
1483
|
specification_version: 3
|
1478
|
-
summary: A systems integration framework, built to bring the benefits of configuration
|
1479
|
-
management to your entire infrastructure.
|
1484
|
+
summary: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
|
1480
1485
|
test_files: []
|
1486
|
+
|