chef 0.10.4 → 0.10.6.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. data/distro/common/html/chef-client.8.html +9 -4
  2. data/distro/common/html/chef-expander.8.html +4 -4
  3. data/distro/common/html/chef-expanderctl.8.html +4 -4
  4. data/distro/common/html/chef-server-webui.8.html +4 -4
  5. data/distro/common/html/chef-server.8.html +4 -4
  6. data/distro/common/html/chef-solo.8.html +4 -4
  7. data/distro/common/html/chef-solr.8.html +6 -4
  8. data/distro/common/html/knife-bootstrap.1.html +13 -11
  9. data/distro/common/html/knife-client.1.html +4 -4
  10. data/distro/common/html/knife-configure.1.html +4 -4
  11. data/distro/common/html/knife-cookbook-site.1.html +7 -5
  12. data/distro/common/html/knife-cookbook.1.html +10 -8
  13. data/distro/common/html/knife-data-bag.1.html +4 -4
  14. data/distro/common/html/knife-environment.1.html +4 -4
  15. data/distro/common/html/knife-exec.1.html +4 -4
  16. data/distro/common/html/knife-index.1.html +4 -4
  17. data/distro/common/html/knife-node.1.html +5 -26
  18. data/distro/common/html/knife-role.1.html +4 -4
  19. data/distro/common/html/knife-search.1.html +9 -8
  20. data/distro/common/html/knife-ssh.1.html +10 -10
  21. data/distro/common/html/knife-status.1.html +4 -4
  22. data/distro/common/html/knife-tag.1.html +4 -4
  23. data/distro/common/html/knife.1.html +36 -10
  24. data/distro/common/html/shef.1.html +4 -4
  25. data/distro/common/man/man1/knife-bootstrap.1 +18 -10
  26. data/distro/common/man/man1/knife-client.1 +1 -1
  27. data/distro/common/man/man1/knife-configure.1 +1 -1
  28. data/distro/common/man/man1/knife-cookbook-site.1 +10 -2
  29. data/distro/common/man/man1/knife-cookbook.1 +10 -5
  30. data/distro/common/man/man1/knife-data-bag.1 +1 -1
  31. data/distro/common/man/man1/knife-environment.1 +1 -1
  32. data/distro/common/man/man1/knife-exec.1 +1 -1
  33. data/distro/common/man/man1/knife-index.1 +1 -1
  34. data/distro/common/man/man1/knife-node.1 +2 -22
  35. data/distro/common/man/man1/knife-role.1 +1 -1
  36. data/distro/common/man/man1/knife-search.1 +8 -5
  37. data/distro/common/man/man1/knife-ssh.1 +17 -12
  38. data/distro/common/man/man1/knife-status.1 +1 -1
  39. data/distro/common/man/man1/knife-tag.1 +1 -1
  40. data/distro/common/man/man1/knife.1 +50 -9
  41. data/distro/common/man/man1/shef.1 +1 -1
  42. data/distro/common/man/man8/chef-client.8 +21 -1
  43. data/distro/common/man/man8/chef-expander.8 +1 -1
  44. data/distro/common/man/man8/chef-expanderctl.8 +1 -1
  45. data/distro/common/man/man8/chef-server-webui.8 +1 -1
  46. data/distro/common/man/man8/chef-server.8 +1 -1
  47. data/distro/common/man/man8/chef-solo.8 +1 -1
  48. data/distro/common/man/man8/chef-solr.8 +9 -1
  49. data/distro/common/markdown/man1/knife-bootstrap.mkd +9 -5
  50. data/distro/common/markdown/man1/knife-cookbook-site.mkd +5 -1
  51. data/distro/common/markdown/man1/knife-cookbook.mkd +7 -4
  52. data/distro/common/markdown/man1/knife-node.mkd +1 -19
  53. data/distro/common/markdown/man1/knife-search.mkd +5 -4
  54. data/distro/common/markdown/man1/knife-ssh.mkd +8 -0
  55. data/distro/common/markdown/man1/knife.mkd +39 -8
  56. data/distro/common/markdown/man8/chef-client.mkd +10 -0
  57. data/distro/common/markdown/man8/chef-solr.mkd +5 -1
  58. data/distro/debian/etc/init.d/chef-client +48 -38
  59. data/distro/redhat/etc/init.d/chef-client +6 -2
  60. data/lib/chef/checksum.rb +9 -24
  61. data/lib/chef/checksum/storage.rb +18 -0
  62. data/lib/chef/checksum/storage/filesystem.rb +56 -0
  63. data/lib/chef/config.rb +6 -2
  64. data/lib/chef/cookbook/syntax_check.rb +1 -1
  65. data/lib/chef/cookbook_version.rb +37 -9
  66. data/lib/chef/file_access_control.rb +1 -1
  67. data/lib/chef/handler.rb +21 -0
  68. data/lib/chef/knife/bootstrap.rb +3 -1
  69. data/lib/chef/knife/bootstrap/archlinux-gems.erb +10 -0
  70. data/lib/chef/knife/bootstrap/centos5-gems.erb +13 -2
  71. data/lib/chef/knife/bootstrap/fedora13-gems.erb +10 -0
  72. data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +10 -0
  73. data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +10 -0
  74. data/lib/chef/knife/client_create.rb +13 -7
  75. data/lib/chef/knife/client_delete.rb +0 -2
  76. data/lib/chef/knife/client_edit.rb +0 -3
  77. data/lib/chef/knife/client_list.rb +0 -1
  78. data/lib/chef/knife/client_reregister.rb +2 -3
  79. data/lib/chef/knife/client_show.rb +0 -1
  80. data/lib/chef/knife/configure.rb +1 -1
  81. data/lib/chef/knife/configure_client.rb +0 -2
  82. data/lib/chef/knife/cookbook_create.rb +12 -12
  83. data/lib/chef/knife/cookbook_delete.rb +2 -0
  84. data/lib/chef/knife/cookbook_download.rb +9 -6
  85. data/lib/chef/knife/cookbook_list.rb +1 -6
  86. data/lib/chef/knife/cookbook_metadata.rb +8 -8
  87. data/lib/chef/knife/cookbook_site_list.rb +4 -2
  88. data/lib/chef/knife/cookbook_test.rb +1 -1
  89. data/lib/chef/knife/core/bootstrap_context.rb +9 -0
  90. data/lib/chef/knife/core/generic_presenter.rb +8 -1
  91. data/lib/chef/knife/core/node_presenter.rb +30 -0
  92. data/lib/chef/knife/core/ui.rb +8 -3
  93. data/lib/chef/knife/data_bag_create.rb +2 -5
  94. data/lib/chef/knife/data_bag_from_file.rb +2 -6
  95. data/lib/chef/knife/node_show.rb +8 -3
  96. data/lib/chef/knife/role_create.rb +2 -2
  97. data/lib/chef/knife/role_from_file.rb +12 -5
  98. data/lib/chef/knife/search.rb +1 -1
  99. data/lib/chef/knife/ssh.rb +20 -3
  100. data/lib/chef/mixin/command/windows.rb +1 -1
  101. data/lib/chef/platform.rb +24 -0
  102. data/lib/chef/provider/deploy.rb +93 -17
  103. data/lib/chef/provider/file.rb +5 -1
  104. data/lib/chef/provider/group/groupadd.rb +11 -1
  105. data/lib/chef/provider/ifconfig.rb +66 -5
  106. data/lib/chef/provider/package.rb +41 -5
  107. data/lib/chef/provider/package/apt.rb +10 -0
  108. data/lib/chef/provider/package/yum.rb +59 -14
  109. data/lib/chef/provider/remote_directory.rb +0 -1
  110. data/lib/chef/provider/service/debian.rb +2 -2
  111. data/lib/chef/provider/service/invokercd.rb +35 -0
  112. data/lib/chef/provider/service/windows.rb +92 -83
  113. data/lib/chef/resource.rb +4 -1
  114. data/lib/chef/resource/deploy.rb +9 -0
  115. data/lib/chef/resource/group.rb +8 -0
  116. data/lib/chef/resource/ifconfig.rb +12 -2
  117. data/lib/chef/resource/package.rb +1 -1
  118. data/lib/chef/resource/service.rb +1 -10
  119. data/lib/chef/shef/shef_session.rb +2 -1
  120. data/lib/chef/shell_out.rb +0 -1
  121. data/lib/chef/shell_out/windows.rb +508 -52
  122. data/lib/chef/solr_query/solr_http_request.rb +19 -5
  123. data/lib/chef/tasks/chef_repo.rake +9 -5
  124. data/lib/chef/version.rb +1 -1
  125. metadata +414 -453
@@ -27,12 +27,12 @@ class Chef
27
27
  class SolrHTTPRequest
28
28
  CLASS_FOR_METHOD = {:GET => Net::HTTP::Get, :POST => Net::HTTP::Post}
29
29
 
30
- UPDATE_URL = '/solr/update'
31
30
  TEXT_XML = {"Content-Type" => "text/xml"}
32
31
 
33
32
  def self.solr_url=(solr_url)
34
33
  @solr_url = solr_url
35
34
  @http_client = nil
35
+ @url_prefix = nil
36
36
  end
37
37
 
38
38
  def self.solr_url
@@ -42,12 +42,25 @@ class Chef
42
42
  def self.http_client
43
43
  @http_client ||= begin
44
44
  uri = URI.parse(solr_url)
45
- Net::HTTP.new(uri.host, uri.port)
45
+ http_client = Net::HTTP.new(uri.host, uri.port)
46
+ http_client.use_ssl = true if uri.port == 443
47
+ http_client
48
+ end
49
+ end
50
+
51
+ def self.url_prefix
52
+ @url_prefix ||= begin
53
+ uri = URI.parse(solr_url)
54
+ if uri.path == ""
55
+ "/solr"
56
+ else
57
+ uri.path.gsub(%r{/$}, '')
58
+ end
46
59
  end
47
60
  end
48
61
 
49
62
  def self.select(params={})
50
- url = "/solr/select?#{url_join(params)}"
63
+ url = "#{url_prefix}/select?#{url_join(params)}"
51
64
  Chef::Log.debug("Sending #{url} to Solr")
52
65
  request = new(:GET, url)
53
66
  json_response = request.run("Search Query to Solr '#{solr_url}#{url}'")
@@ -55,9 +68,10 @@ class Chef
55
68
  end
56
69
 
57
70
  def self.update(doc)
71
+ url = "#{url_prefix}/update"
58
72
  Chef::Log.debug("POSTing document to SOLR:\n#{doc}")
59
- request = new(:POST, UPDATE_URL, TEXT_XML) { |req| req.body = doc.to_s }
60
- request.run("POST to Solr '#{UPDATE_URL}', data: #{doc}")
73
+ request = new(:POST, url, TEXT_XML) { |req| req.body = doc.to_s }
74
+ request.run("POST to Solr '#{solr_url}#{url}', data: #{doc}")
61
75
  end
62
76
 
63
77
  def self.url_join(params_hash={})
@@ -134,15 +134,19 @@ def create_readme(dir)
134
134
  raise "Must provide a COOKBOOK=" unless ENV["COOKBOOK"]
135
135
  puts "** Creating README for cookbook: #{ENV["COOKBOOK"]}"
136
136
  unless File.exists?(File.join(dir, ENV["COOKBOOK"], "README.rdoc"))
137
- open(File.join(dir, ENV["COOKBOOK"], "README.rdoc"), "w") do |file|
137
+ open(File.join(dir, ENV["COOKBOOK"], "README.md"), "w") do |file|
138
138
  file.puts <<-EOH
139
- = DESCRIPTION:
139
+ Description
140
+ ===========
140
141
 
141
- = REQUIREMENTS:
142
+ Requirements
143
+ ============
142
144
 
143
- = ATTRIBUTES:
145
+ Attributes
146
+ ==========
144
147
 
145
- = USAGE:
148
+ Usage
149
+ =====
146
150
 
147
151
  EOH
148
152
  end
@@ -17,7 +17,7 @@
17
17
 
18
18
  class Chef
19
19
  CHEF_ROOT = File.dirname(File.expand_path(File.dirname(__FILE__)))
20
- VERSION = '0.10.4'
20
+ VERSION = '0.10.6.beta.1'
21
21
  end
22
22
 
23
23
  # NOTE: the Chef::Version class is defined in version_class.rb
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
5
- prerelease:
6
- segments:
7
- - 0
8
- - 10
9
- - 4
10
- version: 0.10.4
4
+ prerelease: 7
5
+ version: 0.10.6.beta.1
11
6
  platform: ruby
12
7
  authors:
13
8
  - Adam Jacob
@@ -15,7 +10,8 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2011-08-11 00:00:00 Z
13
+ date: 2011-10-31 00:00:00 -07:00
14
+ default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
21
17
  name: mixlib-config
@@ -25,11 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ">="
27
23
  - !ruby/object:Gem::Version
28
- hash: 23
29
- segments:
30
- - 1
31
- - 1
32
- - 2
33
24
  version: 1.1.2
34
25
  type: :runtime
35
26
  version_requirements: *id001
@@ -41,11 +32,6 @@ dependencies:
41
32
  requirements:
42
33
  - - ">="
43
34
  - !ruby/object:Gem::Version
44
- hash: 19
45
- segments:
46
- - 1
47
- - 1
48
- - 0
49
35
  version: 1.1.0
50
36
  type: :runtime
51
37
  version_requirements: *id002
@@ -57,11 +43,6 @@ dependencies:
57
43
  requirements:
58
44
  - - ">="
59
45
  - !ruby/object:Gem::Version
60
- hash: 27
61
- segments:
62
- - 1
63
- - 3
64
- - 0
65
46
  version: 1.3.0
66
47
  type: :runtime
67
48
  version_requirements: *id003
@@ -73,11 +54,6 @@ dependencies:
73
54
  requirements:
74
55
  - - ">="
75
56
  - !ruby/object:Gem::Version
76
- hash: 19
77
- segments:
78
- - 1
79
- - 1
80
- - 0
81
57
  version: 1.1.0
82
58
  type: :runtime
83
59
  version_requirements: *id004
@@ -89,11 +65,6 @@ dependencies:
89
65
  requirements:
90
66
  - - ">="
91
67
  - !ruby/object:Gem::Version
92
- hash: 7
93
- segments:
94
- - 0
95
- - 6
96
- - 0
97
68
  version: 0.6.0
98
69
  type: :runtime
99
70
  version_requirements: *id005
@@ -105,19 +76,9 @@ dependencies:
105
76
  requirements:
106
77
  - - ">="
107
78
  - !ruby/object:Gem::Version
108
- hash: 31
109
- segments:
110
- - 1
111
- - 0
112
- - 4
113
79
  version: 1.0.4
114
80
  - - <
115
81
  - !ruby/object:Gem::Version
116
- hash: 11
117
- segments:
118
- - 1
119
- - 7
120
- - 0
121
82
  version: 1.7.0
122
83
  type: :runtime
123
84
  version_requirements: *id006
@@ -129,11 +90,6 @@ dependencies:
129
90
  requirements:
130
91
  - - ">="
131
92
  - !ruby/object:Gem::Version
132
- hash: 7
133
- segments:
134
- - 0
135
- - 6
136
- - 0
137
93
  version: 0.6.0
138
94
  type: :runtime
139
95
  version_requirements: *id007
@@ -145,20 +101,10 @@ dependencies:
145
101
  requirements:
146
102
  - - ">="
147
103
  - !ruby/object:Gem::Version
148
- hash: 15
149
- segments:
150
- - 1
151
- - 4
152
- - 4
153
104
  version: 1.4.4
154
105
  - - <=
155
106
  - !ruby/object:Gem::Version
156
- hash: 7
157
- segments:
158
- - 1
159
- - 5
160
- - 2
161
- version: 1.5.2
107
+ version: 1.6.1
162
108
  type: :runtime
163
109
  version_requirements: *id008
164
110
  - !ruby/object:Gem::Dependency
@@ -169,11 +115,6 @@ dependencies:
169
115
  requirements:
170
116
  - - ~>
171
117
  - !ruby/object:Gem::Version
172
- hash: 21
173
- segments:
174
- - 1
175
- - 4
176
- - 9
177
118
  version: 1.4.9
178
119
  type: :runtime
179
120
  version_requirements: *id009
@@ -185,11 +126,6 @@ dependencies:
185
126
  requirements:
186
127
  - - ~>
187
128
  - !ruby/object:Gem::Version
188
- hash: 13
189
- segments:
190
- - 2
191
- - 1
192
- - 3
193
129
  version: 2.1.3
194
130
  type: :runtime
195
131
  version_requirements: *id010
@@ -201,11 +137,6 @@ dependencies:
201
137
  requirements:
202
138
  - - ~>
203
139
  - !ruby/object:Gem::Version
204
- hash: 19
205
- segments:
206
- - 1
207
- - 1
208
- - 0
209
140
  version: 1.1.0
210
141
  type: :runtime
211
142
  version_requirements: *id011
@@ -217,9 +148,6 @@ dependencies:
217
148
  requirements:
218
149
  - - ">="
219
150
  - !ruby/object:Gem::Version
220
- hash: 3
221
- segments:
222
- - 0
223
151
  version: "0"
224
152
  type: :runtime
225
153
  version_requirements: *id012
@@ -231,9 +159,6 @@ dependencies:
231
159
  requirements:
232
160
  - - ">="
233
161
  - !ruby/object:Gem::Version
234
- hash: 3
235
- segments:
236
- - 0
237
162
  version: "0"
238
163
  type: :runtime
239
164
  version_requirements: *id013
@@ -245,9 +170,6 @@ dependencies:
245
170
  requirements:
246
171
  - - ">="
247
172
  - !ruby/object:Gem::Version
248
- hash: 3
249
- segments:
250
- - 0
251
173
  version: "0"
252
174
  type: :runtime
253
175
  version_requirements: *id014
@@ -259,12 +181,53 @@ dependencies:
259
181
  requirements:
260
182
  - - ">="
261
183
  - !ruby/object:Gem::Version
262
- hash: 3
263
- segments:
264
- - 0
265
184
  version: "0"
266
185
  type: :runtime
267
186
  version_requirements: *id015
187
+ - !ruby/object:Gem::Dependency
188
+ name: dep_selector
189
+ prerelease: false
190
+ requirement: &id016 !ruby/object:Gem::Requirement
191
+ none: false
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: "0"
196
+ type: :development
197
+ version_requirements: *id016
198
+ - !ruby/object:Gem::Dependency
199
+ name: rspec-core
200
+ prerelease: false
201
+ requirement: &id017 !ruby/object:Gem::Requirement
202
+ none: false
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: "0"
207
+ type: :development
208
+ version_requirements: *id017
209
+ - !ruby/object:Gem::Dependency
210
+ name: rspec-expectations
211
+ prerelease: false
212
+ requirement: &id018 !ruby/object:Gem::Requirement
213
+ none: false
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ version: "0"
218
+ type: :development
219
+ version_requirements: *id018
220
+ - !ruby/object:Gem::Dependency
221
+ name: rspec-mocks
222
+ prerelease: false
223
+ requirement: &id019 !ruby/object:Gem::Requirement
224
+ none: false
225
+ requirements:
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ version: "0"
229
+ type: :development
230
+ version_requirements: *id019
268
231
  description: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
269
232
  email: adam@opscode.com
270
233
  executables:
@@ -280,449 +243,453 @@ extra_rdoc_files:
280
243
  files:
281
244
  - LICENSE
282
245
  - README.rdoc
283
- - distro/common/html/knife-search.1.html
284
- - distro/common/html/knife-node.1.html
285
- - distro/common/html/knife-tag.1.html
246
+ - distro/arch/etc/conf.d/chef-client.conf
247
+ - distro/arch/etc/conf.d/chef-expander.conf
248
+ - distro/arch/etc/conf.d/chef-server-webui.conf
249
+ - distro/arch/etc/conf.d/chef-server.conf
250
+ - distro/arch/etc/conf.d/chef-solr.conf
251
+ - distro/arch/etc/rc.d/chef-client
252
+ - distro/arch/etc/rc.d/chef-expander
253
+ - distro/arch/etc/rc.d/chef-server
254
+ - distro/arch/etc/rc.d/chef-server-webui
255
+ - distro/arch/etc/rc.d/chef-solr
286
256
  - distro/common/html/chef-client.8.html
287
- - distro/common/html/chef-solo.8.html
288
- - distro/common/html/knife-role.1.html
257
+ - distro/common/html/chef-expander.8.html
258
+ - distro/common/html/chef-expanderctl.8.html
289
259
  - distro/common/html/chef-server-webui.8.html
290
- - distro/common/html/knife-index.1.html
291
- - distro/common/html/knife-status.1.html
292
- - distro/common/html/knife-environment.1.html
293
- - distro/common/html/knife-recipe.1.html
294
- - distro/common/html/knife-data-bag.1.html
295
- - distro/common/html/knife-exec.1.html
260
+ - distro/common/html/chef-server.8.html
261
+ - distro/common/html/chef-solo.8.html
296
262
  - distro/common/html/chef-solr.8.html
297
- - distro/common/html/knife-configure.1.html
263
+ - distro/common/html/knife-bootstrap.1.html
298
264
  - distro/common/html/knife-client.1.html
299
- - distro/common/html/chef-expanderctl.8.html
300
- - distro/common/html/knife.1.html
301
- - distro/common/html/shef.1.html
265
+ - distro/common/html/knife-configure.1.html
266
+ - distro/common/html/knife-cookbook-site.1.html
302
267
  - distro/common/html/knife-cookbook.1.html
303
- - distro/common/html/chef-server.8.html
268
+ - distro/common/html/knife-data-bag.1.html
269
+ - distro/common/html/knife-environment.1.html
270
+ - distro/common/html/knife-exec.1.html
271
+ - distro/common/html/knife-index.1.html
272
+ - distro/common/html/knife-node.1.html
273
+ - distro/common/html/knife-recipe.1.html
274
+ - distro/common/html/knife-role.1.html
275
+ - distro/common/html/knife-search.1.html
304
276
  - distro/common/html/knife-ssh.1.html
305
- - distro/common/html/chef-expander.8.html
306
- - distro/common/html/knife-bootstrap.1.html
307
- - distro/common/html/knife-cookbook-site.1.html
308
- - distro/common/man/man1/knife-ssh.1
309
- - distro/common/man/man1/knife-environment.1
277
+ - distro/common/html/knife-status.1.html
278
+ - distro/common/html/knife-tag.1.html
279
+ - distro/common/html/knife.1.html
280
+ - distro/common/html/shef.1.html
310
281
  - distro/common/man/man1/knife-bootstrap.1
282
+ - distro/common/man/man1/knife-client.1
283
+ - distro/common/man/man1/knife-configure.1
284
+ - distro/common/man/man1/knife-cookbook-site.1
311
285
  - distro/common/man/man1/knife-cookbook.1
312
- - distro/common/man/man1/knife-exec.1
313
- - distro/common/man/man1/knife-tag.1
314
- - distro/common/man/man1/knife-status.1
315
- - distro/common/man/man1/knife.1
316
286
  - distro/common/man/man1/knife-data-bag.1
287
+ - distro/common/man/man1/knife-environment.1
288
+ - distro/common/man/man1/knife-exec.1
317
289
  - distro/common/man/man1/knife-index.1
318
- - distro/common/man/man1/knife-configure.1
319
- - distro/common/man/man1/knife-search.1
320
290
  - distro/common/man/man1/knife-node.1
321
- - distro/common/man/man1/knife-client.1
322
- - distro/common/man/man1/shef.1
323
291
  - distro/common/man/man1/knife-role.1
324
- - distro/common/man/man1/knife-cookbook-site.1
325
- - distro/common/man/man8/chef-server.8
292
+ - distro/common/man/man1/knife-search.1
293
+ - distro/common/man/man1/knife-ssh.1
294
+ - distro/common/man/man1/knife-status.1
295
+ - distro/common/man/man1/knife-tag.1
296
+ - distro/common/man/man1/knife.1
297
+ - distro/common/man/man1/shef.1
326
298
  - distro/common/man/man8/chef-client.8
327
- - distro/common/man/man8/chef-server-webui.8
328
299
  - distro/common/man/man8/chef-expander.8
329
- - distro/common/man/man8/chef-solo.8
330
300
  - distro/common/man/man8/chef-expanderctl.8
301
+ - distro/common/man/man8/chef-server-webui.8
302
+ - distro/common/man/man8/chef-server.8
303
+ - distro/common/man/man8/chef-solo.8
331
304
  - distro/common/man/man8/chef-solr.8
332
- - distro/common/markdown/man1/knife-ssh.mkd
333
- - distro/common/markdown/man1/knife-role.mkd
334
- - distro/common/markdown/man1/knife-cookbook.mkd
335
- - distro/common/markdown/man1/shef.mkd
336
- - distro/common/markdown/man1/knife-node.mkd
337
305
  - distro/common/markdown/man1/knife-bootstrap.mkd
338
- - distro/common/markdown/man1/knife-cookbook-site.mkd
339
306
  - distro/common/markdown/man1/knife-client.mkd
340
- - distro/common/markdown/man1/knife.mkd
341
- - distro/common/markdown/man1/knife-status.mkd
342
- - distro/common/markdown/man1/knife-data-bag.mkd
343
307
  - distro/common/markdown/man1/knife-configure.mkd
344
- - distro/common/markdown/man1/knife-search.mkd
308
+ - distro/common/markdown/man1/knife-cookbook-site.mkd
309
+ - distro/common/markdown/man1/knife-cookbook.mkd
310
+ - distro/common/markdown/man1/knife-data-bag.mkd
345
311
  - distro/common/markdown/man1/knife-environment.mkd
346
- - distro/common/markdown/man1/knife-index.mkd
347
312
  - distro/common/markdown/man1/knife-exec.mkd
313
+ - distro/common/markdown/man1/knife-index.mkd
314
+ - distro/common/markdown/man1/knife-node.mkd
315
+ - distro/common/markdown/man1/knife-role.mkd
316
+ - distro/common/markdown/man1/knife-search.mkd
317
+ - distro/common/markdown/man1/knife-ssh.mkd
318
+ - distro/common/markdown/man1/knife-status.mkd
348
319
  - distro/common/markdown/man1/knife-tag.mkd
349
- - distro/common/markdown/man8/chef-server-webui.mkd
350
- - distro/common/markdown/man8/chef-solo.mkd
351
- - distro/common/markdown/man8/chef-solr.mkd
320
+ - distro/common/markdown/man1/knife.mkd
321
+ - distro/common/markdown/man1/shef.mkd
352
322
  - distro/common/markdown/man8/chef-client.mkd
353
323
  - distro/common/markdown/man8/chef-expander.mkd
354
- - distro/common/markdown/man8/chef-server.mkd
355
324
  - distro/common/markdown/man8/chef-expanderctl.mkd
325
+ - distro/common/markdown/man8/chef-server-webui.mkd
326
+ - distro/common/markdown/man8/chef-server.mkd
327
+ - distro/common/markdown/man8/chef-solo.mkd
328
+ - distro/common/markdown/man8/chef-solr.mkd
356
329
  - distro/common/markdown/README
357
- - distro/redhat/etc/sysconfig/chef-server-webui
358
- - distro/redhat/etc/sysconfig/chef-solr
359
- - distro/redhat/etc/sysconfig/chef-expander
360
- - distro/redhat/etc/sysconfig/chef-client
361
- - distro/redhat/etc/sysconfig/chef-server
362
- - distro/redhat/etc/init.d/chef-server-webui
363
- - distro/redhat/etc/init.d/chef-solr
364
- - distro/redhat/etc/init.d/chef-expander
365
- - distro/redhat/etc/init.d/chef-client
366
- - distro/redhat/etc/init.d/chef-server
367
- - distro/redhat/etc/logrotate.d/chef-server-webui
368
- - distro/redhat/etc/logrotate.d/chef-solr
369
- - distro/redhat/etc/logrotate.d/chef-expander
370
- - distro/redhat/etc/logrotate.d/chef-client
371
- - distro/redhat/etc/logrotate.d/chef-server
372
- - distro/arch/etc/conf.d/chef-server-webui.conf
373
- - distro/arch/etc/conf.d/chef-client.conf
374
- - distro/arch/etc/conf.d/chef-solr.conf
375
- - distro/arch/etc/conf.d/chef-expander.conf
376
- - distro/arch/etc/conf.d/chef-server.conf
377
- - distro/arch/etc/rc.d/chef-server-webui
378
- - distro/arch/etc/rc.d/chef-solr
379
- - distro/arch/etc/rc.d/chef-expander
380
- - distro/arch/etc/rc.d/chef-client
381
- - distro/arch/etc/rc.d/chef-server
382
- - distro/debian/etc/default/chef-server-webui
383
- - distro/debian/etc/default/chef-solr
384
- - distro/debian/etc/default/chef-expander
385
330
  - distro/debian/etc/default/chef-client
331
+ - distro/debian/etc/default/chef-expander
386
332
  - distro/debian/etc/default/chef-server
387
- - distro/debian/etc/init.d/chef-server-webui
388
- - distro/debian/etc/init.d/chef-solr
389
- - distro/debian/etc/init.d/chef-expander
390
- - distro/debian/etc/init.d/chef-client
391
- - distro/debian/etc/init.d/chef-server
392
- - distro/debian/etc/init/chef-server-webui.conf
333
+ - distro/debian/etc/default/chef-server-webui
334
+ - distro/debian/etc/default/chef-solr
393
335
  - distro/debian/etc/init/chef-client.conf
394
- - distro/debian/etc/init/chef-solr.conf
395
336
  - distro/debian/etc/init/chef-expander.conf
337
+ - distro/debian/etc/init/chef-server-webui.conf
396
338
  - distro/debian/etc/init/chef-server.conf
339
+ - distro/debian/etc/init/chef-solr.conf
340
+ - distro/debian/etc/init.d/chef-client
341
+ - distro/debian/etc/init.d/chef-expander
342
+ - distro/debian/etc/init.d/chef-server
343
+ - distro/debian/etc/init.d/chef-server-webui
344
+ - distro/debian/etc/init.d/chef-solr
397
345
  - distro/README
398
- - lib/chef/shell_out/windows.rb
399
- - lib/chef/shell_out/unix.rb
400
- - lib/chef/handler.rb
401
- - lib/chef/solr_query.rb
402
- - lib/chef/runner.rb
403
- - lib/chef/providers.rb
404
- - lib/chef/exceptions.rb
405
- - lib/chef/file_cache.rb
406
- - lib/chef/solr_query/lucene_nodes.rb
407
- - lib/chef/solr_query/lucene.treetop
408
- - lib/chef/solr_query/query_transform.rb
409
- - lib/chef/solr_query/solr_http_request.rb
410
- - lib/chef/resource_collection/stepable_iterator.rb
411
- - lib/chef/webui_user.rb
412
- - lib/chef/node.rb
346
+ - distro/redhat/etc/init.d/chef-client
347
+ - distro/redhat/etc/init.d/chef-expander
348
+ - distro/redhat/etc/init.d/chef-server
349
+ - distro/redhat/etc/init.d/chef-server-webui
350
+ - distro/redhat/etc/init.d/chef-solr
351
+ - distro/redhat/etc/logrotate.d/chef-client
352
+ - distro/redhat/etc/logrotate.d/chef-expander
353
+ - distro/redhat/etc/logrotate.d/chef-server
354
+ - distro/redhat/etc/logrotate.d/chef-server-webui
355
+ - distro/redhat/etc/logrotate.d/chef-solr
356
+ - distro/redhat/etc/sysconfig/chef-client
357
+ - distro/redhat/etc/sysconfig/chef-expander
358
+ - distro/redhat/etc/sysconfig/chef-server
359
+ - distro/redhat/etc/sysconfig/chef-server-webui
360
+ - distro/redhat/etc/sysconfig/chef-solr
361
+ - lib/chef/api_client.rb
362
+ - lib/chef/application/agent.rb
363
+ - lib/chef/application/client.rb
364
+ - lib/chef/application/knife.rb
365
+ - lib/chef/application/solo.rb
413
366
  - lib/chef/application.rb
367
+ - lib/chef/applications.rb
368
+ - lib/chef/certificate.rb
369
+ - lib/chef/checksum/storage/filesystem.rb
370
+ - lib/chef/checksum/storage.rb
371
+ - lib/chef/checksum.rb
372
+ - lib/chef/checksum_cache.rb
373
+ - lib/chef/client.rb
374
+ - lib/chef/config.rb
375
+ - lib/chef/cookbook/chefignore.rb
376
+ - lib/chef/cookbook/cookbook_collection.rb
377
+ - lib/chef/cookbook/cookbook_version_loader.rb
378
+ - lib/chef/cookbook/file_system_file_vendor.rb
379
+ - lib/chef/cookbook/file_vendor.rb
380
+ - lib/chef/cookbook/metadata.rb
381
+ - lib/chef/cookbook/remote_file_vendor.rb
382
+ - lib/chef/cookbook/syntax_check.rb
383
+ - lib/chef/cookbook_loader.rb
384
+ - lib/chef/cookbook_site_streaming_uploader.rb
385
+ - lib/chef/cookbook_uploader.rb
386
+ - lib/chef/cookbook_version.rb
387
+ - lib/chef/cookbook_version_selector.rb
388
+ - lib/chef/couchdb.rb
389
+ - lib/chef/daemon.rb
390
+ - lib/chef/data_bag.rb
391
+ - lib/chef/data_bag_item.rb
414
392
  - lib/chef/encrypted_data_bag_item.rb
393
+ - lib/chef/environment.rb
394
+ - lib/chef/exceptions.rb
415
395
  - lib/chef/file_access_control.rb
416
- - lib/chef/resource.rb
417
- - lib/chef/streaming_cookbook_uploader.rb
418
- - lib/chef/util/windows.rb
419
- - lib/chef/util/file_edit.rb
420
- - lib/chef/util/windows/net_use.rb
421
- - lib/chef/util/windows/volume.rb
422
- - lib/chef/util/windows/net_group.rb
423
- - lib/chef/util/windows/net_user.rb
424
- - lib/chef/knife/tag_delete.rb
425
- - lib/chef/knife/cookbook_metadata_from_file.rb
426
- - lib/chef/knife/role_bulk_delete.rb
427
- - lib/chef/knife/data_bag_from_file.rb
428
- - lib/chef/knife/configure_client.rb
429
- - lib/chef/knife/search.rb
430
- - lib/chef/knife/data_bag_show.rb
431
- - lib/chef/knife/client_edit.rb
432
- - lib/chef/knife/data_bag_list.rb
433
- - lib/chef/knife/cookbook_delete.rb
396
+ - lib/chef/file_cache.rb
397
+ - lib/chef/handler/error_report.rb
398
+ - lib/chef/handler/json_file.rb
399
+ - lib/chef/handler.rb
400
+ - lib/chef/index_queue/amqp_client.rb
401
+ - lib/chef/index_queue/consumer.rb
402
+ - lib/chef/index_queue/indexable.rb
403
+ - lib/chef/index_queue.rb
404
+ - lib/chef/json_compat.rb
405
+ - lib/chef/knife/bootstrap/archlinux-gems.erb
406
+ - lib/chef/knife/bootstrap/centos5-gems.erb
407
+ - lib/chef/knife/bootstrap/fedora13-gems.erb
408
+ - lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
409
+ - lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
410
+ - lib/chef/knife/bootstrap.rb
411
+ - lib/chef/knife/client_bulk_delete.rb
412
+ - lib/chef/knife/client_create.rb
413
+ - lib/chef/knife/client_delete.rb
414
+ - lib/chef/knife/client_edit.rb
415
+ - lib/chef/knife/client_list.rb
416
+ - lib/chef/knife/client_reregister.rb
417
+ - lib/chef/knife/client_show.rb
418
+ - lib/chef/knife/configure.rb
419
+ - lib/chef/knife/configure_client.rb
434
420
  - lib/chef/knife/cookbook_bulk_delete.rb
435
- - lib/chef/knife/node_from_file.rb
436
- - lib/chef/knife/cookbook_upload.rb
421
+ - lib/chef/knife/cookbook_create.rb
422
+ - lib/chef/knife/cookbook_delete.rb
423
+ - lib/chef/knife/cookbook_download.rb
424
+ - lib/chef/knife/cookbook_list.rb
425
+ - lib/chef/knife/cookbook_metadata.rb
426
+ - lib/chef/knife/cookbook_metadata_from_file.rb
427
+ - lib/chef/knife/cookbook_show.rb
428
+ - lib/chef/knife/cookbook_site_download.rb
429
+ - lib/chef/knife/cookbook_site_install.rb
430
+ - lib/chef/knife/cookbook_site_list.rb
431
+ - lib/chef/knife/cookbook_site_search.rb
432
+ - lib/chef/knife/cookbook_site_share.rb
433
+ - lib/chef/knife/cookbook_site_show.rb
437
434
  - lib/chef/knife/cookbook_site_unshare.rb
438
- - lib/chef/knife/core/object_loader.rb
439
- - lib/chef/knife/core/subcommand_loader.rb
440
- - lib/chef/knife/core/cookbook_scm_repo.rb
441
- - lib/chef/knife/core/node_presenter.rb
435
+ - lib/chef/knife/cookbook_site_vendor.rb
436
+ - lib/chef/knife/cookbook_test.rb
437
+ - lib/chef/knife/cookbook_upload.rb
442
438
  - lib/chef/knife/core/bootstrap_context.rb
443
- - lib/chef/knife/core/ui.rb
444
- - lib/chef/knife/core/text_formatter.rb
439
+ - lib/chef/knife/core/cookbook_scm_repo.rb
445
440
  - lib/chef/knife/core/generic_presenter.rb
446
441
  - lib/chef/knife/core/node_editor.rb
447
- - lib/chef/knife/bootstrap.rb
448
- - lib/chef/knife/cookbook_metadata.rb
449
- - lib/chef/knife/node_show.rb
442
+ - lib/chef/knife/core/node_presenter.rb
443
+ - lib/chef/knife/core/object_loader.rb
444
+ - lib/chef/knife/core/subcommand_loader.rb
445
+ - lib/chef/knife/core/text_formatter.rb
446
+ - lib/chef/knife/core/ui.rb
450
447
  - lib/chef/knife/data_bag_create.rb
451
- - lib/chef/knife/recipe_list.rb
452
- - lib/chef/knife/client_show.rb
453
- - lib/chef/knife/role_from_file.rb
454
- - lib/chef/knife/node_list.rb
455
- - lib/chef/knife/role_show.rb
456
- - lib/chef/knife/environment_show.rb
457
- - lib/chef/knife/node_create.rb
458
- - lib/chef/knife/cookbook_download.rb
459
- - lib/chef/knife/role_edit.rb
448
+ - lib/chef/knife/data_bag_delete.rb
449
+ - lib/chef/knife/data_bag_edit.rb
450
+ - lib/chef/knife/data_bag_from_file.rb
451
+ - lib/chef/knife/data_bag_list.rb
452
+ - lib/chef/knife/data_bag_show.rb
460
453
  - lib/chef/knife/environment_create.rb
461
- - lib/chef/knife/configure.rb
462
- - lib/chef/knife/status.rb
463
- - lib/chef/knife/cookbook_test.rb
464
- - lib/chef/knife/cookbook_show.rb
465
- - lib/chef/knife/client_delete.rb
454
+ - lib/chef/knife/environment_delete.rb
455
+ - lib/chef/knife/environment_edit.rb
456
+ - lib/chef/knife/environment_from_file.rb
466
457
  - lib/chef/knife/environment_list.rb
458
+ - lib/chef/knife/environment_show.rb
459
+ - lib/chef/knife/exec.rb
460
+ - lib/chef/knife/help.rb
461
+ - lib/chef/knife/help_topics.rb
467
462
  - lib/chef/knife/index_rebuild.rb
463
+ - lib/chef/knife/node_bulk_delete.rb
464
+ - lib/chef/knife/node_create.rb
468
465
  - lib/chef/knife/node_delete.rb
469
- - lib/chef/knife/environment_from_file.rb
466
+ - lib/chef/knife/node_edit.rb
467
+ - lib/chef/knife/node_from_file.rb
468
+ - lib/chef/knife/node_list.rb
470
469
  - lib/chef/knife/node_run_list_add.rb
471
- - lib/chef/knife/cookbook_site_install.rb
472
- - lib/chef/knife/help_topics.rb
473
- - lib/chef/knife/data_bag_delete.rb
474
- - lib/chef/knife/role_create.rb
475
- - lib/chef/knife/cookbook_site_list.rb
476
- - lib/chef/knife/client_bulk_delete.rb
477
- - lib/chef/knife/data_bag_edit.rb
478
- - lib/chef/knife/client_create.rb
479
470
  - lib/chef/knife/node_run_list_remove.rb
480
- - lib/chef/knife/cookbook_create.rb
481
- - lib/chef/knife/node_edit.rb
482
- - lib/chef/knife/exec.rb
483
- - lib/chef/knife/cookbook_list.rb
484
- - lib/chef/knife/client_list.rb
485
- - lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
486
- - lib/chef/knife/bootstrap/archlinux-gems.erb
487
- - lib/chef/knife/bootstrap/fedora13-gems.erb
488
- - lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
489
- - lib/chef/knife/bootstrap/centos5-gems.erb
471
+ - lib/chef/knife/node_show.rb
472
+ - lib/chef/knife/recipe_list.rb
473
+ - lib/chef/knife/role_bulk_delete.rb
474
+ - lib/chef/knife/role_create.rb
475
+ - lib/chef/knife/role_delete.rb
476
+ - lib/chef/knife/role_edit.rb
477
+ - lib/chef/knife/role_from_file.rb
478
+ - lib/chef/knife/role_list.rb
479
+ - lib/chef/knife/role_show.rb
480
+ - lib/chef/knife/search.rb
490
481
  - lib/chef/knife/ssh.rb
491
- - lib/chef/knife/help.rb
492
- - lib/chef/knife/environment_edit.rb
493
- - lib/chef/knife/environment_delete.rb
494
- - lib/chef/knife/cookbook_site_show.rb
495
- - lib/chef/knife/cookbook_site_download.rb
496
- - lib/chef/knife/cookbook_site_share.rb
497
- - lib/chef/knife/cookbook_site_vendor.rb
498
- - lib/chef/knife/cookbook_site_search.rb
499
- - lib/chef/knife/tag_list.rb
500
- - lib/chef/knife/node_bulk_delete.rb
482
+ - lib/chef/knife/status.rb
501
483
  - lib/chef/knife/tag_create.rb
502
- - lib/chef/knife/client_reregister.rb
503
- - lib/chef/knife/role_list.rb
504
- - lib/chef/knife/role_delete.rb
505
- - lib/chef/rest.rb
506
- - lib/chef/cookbook_version_selector.rb
484
+ - lib/chef/knife/tag_delete.rb
485
+ - lib/chef/knife/tag_list.rb
486
+ - lib/chef/knife.rb
487
+ - lib/chef/log.rb
488
+ - lib/chef/mash.rb
489
+ - lib/chef/mixin/check_helper.rb
490
+ - lib/chef/mixin/checksum.rb
491
+ - lib/chef/mixin/command/unix.rb
492
+ - lib/chef/mixin/command/windows.rb
493
+ - lib/chef/mixin/command.rb
494
+ - lib/chef/mixin/convert_to_class_name.rb
495
+ - lib/chef/mixin/create_path.rb
496
+ - lib/chef/mixin/deep_merge.rb
497
+ - lib/chef/mixin/deprecation.rb
498
+ - lib/chef/mixin/from_file.rb
499
+ - lib/chef/mixin/get_source_from_package.rb
500
+ - lib/chef/mixin/language.rb
501
+ - lib/chef/mixin/language_include_attribute.rb
502
+ - lib/chef/mixin/language_include_recipe.rb
503
+ - lib/chef/mixin/params_validate.rb
504
+ - lib/chef/mixin/recipe_definition_dsl_core.rb
505
+ - lib/chef/mixin/shell_out.rb
506
+ - lib/chef/mixin/template.rb
507
+ - lib/chef/mixin/xml_escape.rb
508
+ - lib/chef/mixins.rb
507
509
  - lib/chef/monkey_patches/dir.rb
508
- - lib/chef/monkey_patches/string.rb
509
510
  - lib/chef/monkey_patches/numeric.rb
510
511
  - lib/chef/monkey_patches/object.rb
511
512
  - lib/chef/monkey_patches/regexp.rb
513
+ - lib/chef/monkey_patches/string.rb
512
514
  - lib/chef/monkey_patches/tempfile.rb
513
- - lib/chef/shef.rb
514
- - lib/chef/handler/json_file.rb
515
- - lib/chef/handler/error_report.rb
515
+ - lib/chef/nil_argument.rb
516
516
  - lib/chef/node/attribute.rb
517
- - lib/chef/rest/rest_request.rb
518
- - lib/chef/rest/cookie_jar.rb
519
- - lib/chef/rest/auth_credentials.rb
520
- - lib/chef/tasks/chef_repo.rake
521
- - lib/chef/resource_definition.rb
522
- - lib/chef/shell_out.rb
523
- - lib/chef/index_queue.rb
524
- - lib/chef/version.rb
525
- - lib/chef/provider/subversion.rb
526
- - lib/chef/provider/package/easy_install.rb
527
- - lib/chef/provider/package/solaris.rb
528
- - lib/chef/provider/package/rubygems.rb
529
- - lib/chef/provider/package/macports.rb
530
- - lib/chef/provider/package/yum-dump.py
531
- - lib/chef/provider/package/dpkg.rb
532
- - lib/chef/provider/package/zypper.rb
533
- - lib/chef/provider/package/yum.rb
534
- - lib/chef/provider/package/apt.rb
535
- - lib/chef/provider/package/pacman.rb
536
- - lib/chef/provider/package/portage.rb
537
- - lib/chef/provider/package/freebsd.rb
538
- - lib/chef/provider/package/rpm.rb
517
+ - lib/chef/node.rb
518
+ - lib/chef/openid_registration.rb
519
+ - lib/chef/platform.rb
539
520
  - lib/chef/provider/breakpoint.rb
540
- - lib/chef/provider/execute.rb
541
- - lib/chef/provider/ohai.rb
542
- - lib/chef/provider/service/arch.rb
543
- - lib/chef/provider/service/solaris.rb
544
- - lib/chef/provider/service/windows.rb
545
- - lib/chef/provider/service/systemd.rb
546
- - lib/chef/provider/service/upstart.rb
547
- - lib/chef/provider/service/redhat.rb
548
- - lib/chef/provider/service/simple.rb
549
- - lib/chef/provider/service/debian.rb
550
- - lib/chef/provider/service/gentoo.rb
551
- - lib/chef/provider/service/insserv.rb
552
- - lib/chef/provider/service/freebsd.rb
553
- - lib/chef/provider/service/init.rb
554
- - lib/chef/provider/mount/windows.rb
555
- - lib/chef/provider/mount/mount.rb
521
+ - lib/chef/provider/cookbook_file.rb
522
+ - lib/chef/provider/cron/solaris.rb
523
+ - lib/chef/provider/cron.rb
556
524
  - lib/chef/provider/deploy/revision.rb
557
525
  - lib/chef/provider/deploy/timestamped.rb
558
- - lib/chef/provider/template.rb
559
- - lib/chef/provider/git.rb
560
- - lib/chef/provider/link.rb
561
- - lib/chef/provider/service.rb
562
- - lib/chef/provider/remote_directory.rb
563
- - lib/chef/provider/remote_file.rb
564
- - lib/chef/provider/user.rb
526
+ - lib/chef/provider/deploy.rb
565
527
  - lib/chef/provider/directory.rb
566
- - lib/chef/provider/cookbook_file.rb
567
- - lib/chef/provider/ruby_block.rb
568
528
  - lib/chef/provider/env/windows.rb
569
- - lib/chef/provider/script.rb
570
529
  - lib/chef/provider/env.rb
571
- - lib/chef/provider/http_request.rb
572
- - lib/chef/provider/group/gpasswd.rb
573
- - lib/chef/provider/group/windows.rb
574
- - lib/chef/provider/group/dscl.rb
575
- - lib/chef/provider/group/suse.rb
576
- - lib/chef/provider/group/usermod.rb
530
+ - lib/chef/provider/erl_call.rb
531
+ - lib/chef/provider/execute.rb
532
+ - lib/chef/provider/file.rb
533
+ - lib/chef/provider/git.rb
577
534
  - lib/chef/provider/group/aix.rb
535
+ - lib/chef/provider/group/dscl.rb
536
+ - lib/chef/provider/group/gpasswd.rb
578
537
  - lib/chef/provider/group/groupadd.rb
579
538
  - lib/chef/provider/group/pw.rb
580
- - lib/chef/provider/erl_call.rb
581
- - lib/chef/provider/mdadm.rb
539
+ - lib/chef/provider/group/suse.rb
540
+ - lib/chef/provider/group/usermod.rb
541
+ - lib/chef/provider/group/windows.rb
542
+ - lib/chef/provider/group.rb
543
+ - lib/chef/provider/http_request.rb
544
+ - lib/chef/provider/ifconfig.rb
545
+ - lib/chef/provider/link.rb
582
546
  - lib/chef/provider/log.rb
583
- - lib/chef/provider/deploy.rb
584
- - lib/chef/provider/file.rb
585
- - lib/chef/provider/cron.rb
547
+ - lib/chef/provider/mdadm.rb
548
+ - lib/chef/provider/mount/mount.rb
549
+ - lib/chef/provider/mount/windows.rb
586
550
  - lib/chef/provider/mount.rb
587
- - lib/chef/provider/user/useradd.rb
588
- - lib/chef/provider/user/windows.rb
589
- - lib/chef/provider/user/dscl.rb
590
- - lib/chef/provider/user/pw.rb
591
- - lib/chef/provider/cron/solaris.rb
551
+ - lib/chef/provider/ohai.rb
552
+ - lib/chef/provider/package/apt.rb
553
+ - lib/chef/provider/package/dpkg.rb
554
+ - lib/chef/provider/package/easy_install.rb
555
+ - lib/chef/provider/package/freebsd.rb
556
+ - lib/chef/provider/package/macports.rb
557
+ - lib/chef/provider/package/pacman.rb
558
+ - lib/chef/provider/package/portage.rb
559
+ - lib/chef/provider/package/rpm.rb
560
+ - lib/chef/provider/package/rubygems.rb
561
+ - lib/chef/provider/package/solaris.rb
562
+ - lib/chef/provider/package/yum-dump.py
563
+ - lib/chef/provider/package/yum.rb
564
+ - lib/chef/provider/package/zypper.rb
592
565
  - lib/chef/provider/package.rb
566
+ - lib/chef/provider/remote_directory.rb
567
+ - lib/chef/provider/remote_file.rb
593
568
  - lib/chef/provider/route.rb
594
- - lib/chef/provider/ifconfig.rb
595
- - lib/chef/provider/group.rb
596
- - lib/chef/recipe.rb
597
- - lib/chef/client.rb
598
- - lib/chef/mash.rb
599
- - lib/chef/checksum.rb
600
- - lib/chef/resources.rb
601
- - lib/chef/shef/shef_session.rb
602
- - lib/chef/shef/shef_rest.rb
603
- - lib/chef/shef/model_wrapper.rb
604
- - lib/chef/shef/ext.rb
605
- - lib/chef/data_bag.rb
606
- - lib/chef/version_constraint.rb
607
- - lib/chef/role.rb
608
- - lib/chef/openid_registration.rb
609
- - lib/chef/application/agent.rb
610
- - lib/chef/application/client.rb
611
- - lib/chef/application/solo.rb
612
- - lib/chef/application/knife.rb
613
- - lib/chef/run_status.rb
614
- - lib/chef/couchdb.rb
615
- - lib/chef/checksum_cache.rb
616
- - lib/chef/index_queue/amqp_client.rb
617
- - lib/chef/index_queue/consumer.rb
618
- - lib/chef/index_queue/indexable.rb
619
- - lib/chef/data_bag_item.rb
620
- - lib/chef/applications.rb
621
- - lib/chef/sandbox.rb
622
- - lib/chef/cookbook_site_streaming_uploader.rb
623
- - lib/chef/daemon.rb
624
- - lib/chef/config.rb
625
- - lib/chef/cookbook_uploader.rb
626
- - lib/chef/cookbook_loader.rb
627
- - lib/chef/api_client.rb
628
- - lib/chef/mixins.rb
629
- - lib/chef/log.rb
630
- - lib/chef/resource_definition_list.rb
631
- - lib/chef/resource_collection.rb
632
- - lib/chef/nil_argument.rb
633
- - lib/chef/run_context.rb
634
- - lib/chef/environment.rb
635
- - lib/chef/platform.rb
636
- - lib/chef/run_list/versioned_recipe_list.rb
637
- - lib/chef/run_list/run_list_expansion.rb
638
- - lib/chef/run_list/run_list_item.rb
639
- - lib/chef/cookbook/file_vendor.rb
640
- - lib/chef/cookbook/cookbook_version_loader.rb
641
- - lib/chef/cookbook/metadata.rb
642
- - lib/chef/cookbook/syntax_check.rb
643
- - lib/chef/cookbook/remote_file_vendor.rb
644
- - lib/chef/cookbook/cookbook_collection.rb
645
- - lib/chef/cookbook/file_system_file_vendor.rb
646
- - lib/chef/cookbook/chefignore.rb
647
- - lib/chef/cookbook_version.rb
648
- - lib/chef/run_list.rb
569
+ - lib/chef/provider/ruby_block.rb
570
+ - lib/chef/provider/script.rb
571
+ - lib/chef/provider/service/arch.rb
572
+ - lib/chef/provider/service/debian.rb
573
+ - lib/chef/provider/service/freebsd.rb
574
+ - lib/chef/provider/service/gentoo.rb
575
+ - lib/chef/provider/service/init.rb
576
+ - lib/chef/provider/service/insserv.rb
577
+ - lib/chef/provider/service/invokercd.rb
578
+ - lib/chef/provider/service/redhat.rb
579
+ - lib/chef/provider/service/simple.rb
580
+ - lib/chef/provider/service/solaris.rb
581
+ - lib/chef/provider/service/systemd.rb
582
+ - lib/chef/provider/service/upstart.rb
583
+ - lib/chef/provider/service/windows.rb
584
+ - lib/chef/provider/service.rb
585
+ - lib/chef/provider/subversion.rb
586
+ - lib/chef/provider/template.rb
587
+ - lib/chef/provider/user/dscl.rb
588
+ - lib/chef/provider/user/pw.rb
589
+ - lib/chef/provider/user/useradd.rb
590
+ - lib/chef/provider/user/windows.rb
591
+ - lib/chef/provider/user.rb
649
592
  - lib/chef/provider.rb
650
- - lib/chef/resource/subversion.rb
651
- - lib/chef/resource/rpm_package.rb
652
- - lib/chef/resource/gem_package.rb
653
- - lib/chef/resource/easy_install_package.rb
593
+ - lib/chef/providers.rb
594
+ - lib/chef/recipe.rb
595
+ - lib/chef/resource/apt_package.rb
596
+ - lib/chef/resource/bash.rb
654
597
  - lib/chef/resource/breakpoint.rb
598
+ - lib/chef/resource/cookbook_file.rb
599
+ - lib/chef/resource/cron.rb
600
+ - lib/chef/resource/csh.rb
601
+ - lib/chef/resource/deploy.rb
602
+ - lib/chef/resource/deploy_revision.rb
603
+ - lib/chef/resource/directory.rb
604
+ - lib/chef/resource/dpkg_package.rb
605
+ - lib/chef/resource/easy_install_package.rb
606
+ - lib/chef/resource/env.rb
607
+ - lib/chef/resource/erl_call.rb
655
608
  - lib/chef/resource/execute.rb
656
- - lib/chef/resource/ohai.rb
657
- - lib/chef/resource/timestamped_deploy.rb
658
- - lib/chef/resource/apt_package.rb
659
- - lib/chef/resource/template.rb
609
+ - lib/chef/resource/file.rb
610
+ - lib/chef/resource/freebsd_package.rb
611
+ - lib/chef/resource/gem_package.rb
660
612
  - lib/chef/resource/git.rb
613
+ - lib/chef/resource/group.rb
614
+ - lib/chef/resource/http_request.rb
615
+ - lib/chef/resource/ifconfig.rb
661
616
  - lib/chef/resource/link.rb
662
- - lib/chef/resource/perl.rb
663
- - lib/chef/resource/pacman_package.rb
664
- - lib/chef/resource/yum_package.rb
665
- - lib/chef/resource/solaris_package.rb
666
- - lib/chef/resource/service.rb
667
- - lib/chef/resource/dpkg_package.rb
668
- - lib/chef/resource/remote_directory.rb
669
- - lib/chef/resource/remote_file.rb
670
- - lib/chef/resource/user.rb
671
- - lib/chef/resource/directory.rb
672
- - lib/chef/resource/cookbook_file.rb
673
- - lib/chef/resource/ruby_block.rb
617
+ - lib/chef/resource/log.rb
674
618
  - lib/chef/resource/macports_package.rb
675
- - lib/chef/resource/python.rb
676
- - lib/chef/resource/freebsd_package.rb
677
- - lib/chef/resource/script.rb
678
- - lib/chef/resource/env.rb
679
- - lib/chef/resource/scm.rb
680
- - lib/chef/resource/http_request.rb
681
- - lib/chef/resource/erl_call.rb
682
619
  - lib/chef/resource/mdadm.rb
683
- - lib/chef/resource/log.rb
684
- - lib/chef/resource/deploy.rb
685
- - lib/chef/resource/file.rb
686
- - lib/chef/resource/cron.rb
687
- - lib/chef/resource/portage_package.rb
688
- - lib/chef/resource/ruby.rb
689
620
  - lib/chef/resource/mount.rb
690
- - lib/chef/resource/deploy_revision.rb
691
- - lib/chef/resource/bash.rb
621
+ - lib/chef/resource/ohai.rb
692
622
  - lib/chef/resource/package.rb
623
+ - lib/chef/resource/pacman_package.rb
624
+ - lib/chef/resource/perl.rb
625
+ - lib/chef/resource/portage_package.rb
626
+ - lib/chef/resource/python.rb
627
+ - lib/chef/resource/remote_directory.rb
628
+ - lib/chef/resource/remote_file.rb
693
629
  - lib/chef/resource/route.rb
694
- - lib/chef/resource/ifconfig.rb
695
- - lib/chef/resource/csh.rb
696
- - lib/chef/resource/group.rb
697
- - lib/chef/certificate.rb
630
+ - lib/chef/resource/rpm_package.rb
631
+ - lib/chef/resource/ruby.rb
632
+ - lib/chef/resource/ruby_block.rb
633
+ - lib/chef/resource/scm.rb
634
+ - lib/chef/resource/script.rb
635
+ - lib/chef/resource/service.rb
636
+ - lib/chef/resource/solaris_package.rb
637
+ - lib/chef/resource/subversion.rb
638
+ - lib/chef/resource/template.rb
639
+ - lib/chef/resource/timestamped_deploy.rb
640
+ - lib/chef/resource/user.rb
641
+ - lib/chef/resource/yum_package.rb
642
+ - lib/chef/resource.rb
643
+ - lib/chef/resource_collection/stepable_iterator.rb
644
+ - lib/chef/resource_collection.rb
645
+ - lib/chef/resource_definition.rb
646
+ - lib/chef/resource_definition_list.rb
647
+ - lib/chef/resources.rb
648
+ - lib/chef/rest/auth_credentials.rb
649
+ - lib/chef/rest/cookie_jar.rb
650
+ - lib/chef/rest/rest_request.rb
651
+ - lib/chef/rest.rb
652
+ - lib/chef/role.rb
653
+ - lib/chef/run_context.rb
654
+ - lib/chef/run_list/run_list_expansion.rb
655
+ - lib/chef/run_list/run_list_item.rb
656
+ - lib/chef/run_list/versioned_recipe_list.rb
657
+ - lib/chef/run_list.rb
658
+ - lib/chef/run_status.rb
659
+ - lib/chef/runner.rb
660
+ - lib/chef/sandbox.rb
698
661
  - lib/chef/search/query.rb
699
- - lib/chef/mixin/convert_to_class_name.rb
700
- - lib/chef/mixin/deep_merge.rb
701
- - lib/chef/mixin/shell_out.rb
702
- - lib/chef/mixin/checksum.rb
703
- - lib/chef/mixin/create_path.rb
704
- - lib/chef/mixin/template.rb
705
- - lib/chef/mixin/command/windows.rb
706
- - lib/chef/mixin/command/unix.rb
707
- - lib/chef/mixin/from_file.rb
708
- - lib/chef/mixin/recipe_definition_dsl_core.rb
709
- - lib/chef/mixin/get_source_from_package.rb
710
- - lib/chef/mixin/deprecation.rb
711
- - lib/chef/mixin/language.rb
712
- - lib/chef/mixin/xml_escape.rb
713
- - lib/chef/mixin/language_include_recipe.rb
714
- - lib/chef/mixin/check_helper.rb
715
- - lib/chef/mixin/command.rb
716
- - lib/chef/mixin/params_validate.rb
717
- - lib/chef/mixin/language_include_attribute.rb
718
- - lib/chef/json_compat.rb
719
- - lib/chef/knife.rb
662
+ - lib/chef/shef/ext.rb
663
+ - lib/chef/shef/model_wrapper.rb
664
+ - lib/chef/shef/shef_rest.rb
665
+ - lib/chef/shef/shef_session.rb
666
+ - lib/chef/shef.rb
667
+ - lib/chef/shell_out/unix.rb
668
+ - lib/chef/shell_out/windows.rb
669
+ - lib/chef/shell_out.rb
670
+ - lib/chef/solr_query/lucene.treetop
671
+ - lib/chef/solr_query/lucene_nodes.rb
672
+ - lib/chef/solr_query/query_transform.rb
673
+ - lib/chef/solr_query/solr_http_request.rb
674
+ - lib/chef/solr_query.rb
675
+ - lib/chef/streaming_cookbook_uploader.rb
676
+ - lib/chef/tasks/chef_repo.rake
677
+ - lib/chef/util/file_edit.rb
678
+ - lib/chef/util/windows/net_group.rb
679
+ - lib/chef/util/windows/net_use.rb
680
+ - lib/chef/util/windows/net_user.rb
681
+ - lib/chef/util/windows/volume.rb
682
+ - lib/chef/util/windows.rb
683
+ - lib/chef/version.rb
720
684
  - lib/chef/version_class.rb
685
+ - lib/chef/version_constraint.rb
686
+ - lib/chef/webui_user.rb
721
687
  - lib/chef.rb
722
688
  - bin/chef-client
723
689
  - bin/chef-solo
724
690
  - bin/knife
725
691
  - bin/shef
692
+ has_rdoc: true
726
693
  homepage: http://wiki.opscode.com/display/chef
727
694
  licenses: []
728
695
 
@@ -736,23 +703,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
736
703
  requirements:
737
704
  - - ">="
738
705
  - !ruby/object:Gem::Version
739
- hash: 3
740
- segments:
741
- - 0
742
706
  version: "0"
743
707
  required_rubygems_version: !ruby/object:Gem::Requirement
744
708
  none: false
745
709
  requirements:
746
- - - ">="
710
+ - - ">"
747
711
  - !ruby/object:Gem::Version
748
- hash: 3
749
- segments:
750
- - 0
751
- version: "0"
712
+ version: 1.3.1
752
713
  requirements: []
753
714
 
754
715
  rubyforge_project:
755
- rubygems_version: 1.7.2
716
+ rubygems_version: 1.6.2
756
717
  signing_key:
757
718
  specification_version: 3
758
719
  summary: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.