chef 0.10.2 → 0.10.4.rc.1
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 +4 -4
- data/distro/common/html/knife-cookbook.1.html +5 -3
- data/distro/common/html/knife-node.1.html +4 -4
- data/distro/common/man/man1/knife-cookbook.1 +5 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/markdown/man1/knife-cookbook-site.mkd +3 -3
- data/distro/common/markdown/man1/knife-cookbook.mkd +7 -0
- data/distro/common/markdown/man1/knife-node.mkd +4 -3
- data/distro/common/markdown/man1/knife-ssh.mkd +2 -0
- data/lib/chef/application.rb +1 -0
- data/lib/chef/cookbook_loader.rb +18 -0
- data/lib/chef/cookbook_uploader.rb +1 -1
- data/lib/chef/data_bag.rb +14 -2
- data/lib/chef/data_bag_item.rb +8 -2
- data/lib/chef/encrypted_data_bag_item.rb +19 -6
- data/lib/chef/environment.rb +12 -6
- data/lib/chef/exceptions.rb +1 -0
- data/lib/chef/knife.rb +0 -28
- data/lib/chef/knife/bootstrap.rb +7 -0
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +14 -12
- data/lib/chef/knife/bootstrap/centos5-gems.erb +8 -5
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +2 -0
- data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +16 -9
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +6 -3
- data/lib/chef/knife/client_bulk_delete.rb +28 -6
- data/lib/chef/knife/cookbook_site_install.rb +2 -2
- data/lib/chef/knife/cookbook_upload.rb +71 -0
- data/lib/chef/knife/core/bootstrap_context.rb +13 -3
- data/lib/chef/knife/core/cookbook_scm_repo.rb +2 -3
- data/lib/chef/knife/core/node_presenter.rb +5 -2
- data/lib/chef/knife/help.rb +13 -12
- data/lib/chef/knife/help_topics.rb +4 -0
- data/lib/chef/knife/ssh.rb +25 -4
- data/lib/chef/mixin/create_path.rb +3 -2
- data/lib/chef/mixin/get_source_from_package.rb +42 -0
- data/lib/chef/mixin/language.rb +8 -11
- data/lib/chef/monkey_patches/numeric.rb +9 -1
- data/lib/chef/monkey_patches/string.rb +21 -0
- data/lib/chef/platform.rb +2 -1
- data/lib/chef/provider.rb +1 -1
- data/lib/chef/provider/git.rb +16 -3
- data/lib/chef/provider/group/suse.rb +53 -0
- data/lib/chef/provider/mount/mount.rb +28 -20
- data/lib/chef/provider/package/apt.rb +39 -24
- data/lib/chef/provider/package/dpkg.rb +5 -2
- data/lib/chef/provider/package/easy_install.rb +2 -2
- data/lib/chef/provider/package/freebsd.rb +5 -2
- data/lib/chef/provider/package/macports.rb +4 -4
- data/lib/chef/provider/package/rpm.rb +4 -1
- data/lib/chef/provider/package/rubygems.rb +3 -0
- data/lib/chef/provider/package/solaris.rb +3 -0
- data/lib/chef/provider/package/yum-dump.py +239 -81
- data/lib/chef/provider/package/yum.rb +977 -110
- data/lib/chef/provider/package/zypper.rb +20 -3
- data/lib/chef/provider/remote_directory.rb +0 -1
- data/lib/chef/provider/service/arch.rb +35 -28
- data/lib/chef/provider/service/systemd.rb +102 -0
- data/lib/chef/provider/service/upstart.rb +8 -2
- data/lib/chef/providers.rb +2 -0
- data/lib/chef/resource.rb +31 -2
- data/lib/chef/resource/git.rb +9 -0
- data/lib/chef/resource/mount.rb +1 -2
- data/lib/chef/resource/yum_package.rb +20 -0
- data/lib/chef/rest.rb +1 -1
- data/lib/chef/role.rb +1 -1
- data/lib/chef/run_context.rb +3 -3
- data/lib/chef/runner.rb +15 -2
- data/lib/chef/shell_out.rb +1 -1
- data/lib/chef/shell_out/windows.rb +2 -2
- data/lib/chef/solr_query.rb +1 -1
- data/lib/chef/tasks/chef_repo.rake +1 -1
- data/lib/chef/version.rb +1 -1
- metadata +425 -441
data/lib/chef/rest.rb
CHANGED
@@ -195,7 +195,7 @@ class Chef
|
|
195
195
|
end
|
196
196
|
end
|
197
197
|
elsif res.kind_of?(Net::HTTPFound) or res.kind_of?(Net::HTTPMovedPermanently)
|
198
|
-
follow_redirect {run_request(
|
198
|
+
follow_redirect {run_request(method, create_url(res['location']), headers, false, nil, raw)}
|
199
199
|
elsif res.kind_of?(Net::HTTPNotModified)
|
200
200
|
false
|
201
201
|
else
|
data/lib/chef/role.rb
CHANGED
@@ -310,7 +310,7 @@ class Chef
|
|
310
310
|
rb_file = File.join(Chef::Config[:role_path], "#{name}.rb")
|
311
311
|
|
312
312
|
if File.exists?(js_file) || force == "json"
|
313
|
-
Chef::JSONCompat.from_json(IO.read(js_file))
|
313
|
+
json_create Chef::JSONCompat.from_json(IO.read(js_file))
|
314
314
|
elsif File.exists?(rb_file) || force == "ruby"
|
315
315
|
role = Chef::Role.new
|
316
316
|
role.name(name)
|
data/lib/chef/run_context.rb
CHANGED
@@ -79,21 +79,21 @@ class Chef
|
|
79
79
|
def load_libraries
|
80
80
|
foreach_cookbook_load_segment(:libraries) do |cookbook_name, filename|
|
81
81
|
Chef::Log.debug("Loading cookbook #{cookbook_name}'s library file: #{filename}")
|
82
|
-
|
82
|
+
Kernel.load(filename)
|
83
83
|
end
|
84
84
|
end
|
85
85
|
|
86
86
|
def load_lwrp_providers
|
87
87
|
foreach_cookbook_load_segment(:providers) do |cookbook_name, filename|
|
88
88
|
Chef::Log.debug("Loading cookbook #{cookbook_name}'s providers from #{filename}")
|
89
|
-
Chef::Provider.build_from_file(cookbook_name, filename)
|
89
|
+
Chef::Provider.build_from_file(cookbook_name, filename, self)
|
90
90
|
end
|
91
91
|
end
|
92
92
|
|
93
93
|
def load_lwrp_resources
|
94
94
|
foreach_cookbook_load_segment(:resources) do |cookbook_name, filename|
|
95
95
|
Chef::Log.debug("Loading cookbook #{cookbook_name}'s resources from #{filename}")
|
96
|
-
Chef::Resource.build_from_file(cookbook_name, filename)
|
96
|
+
Chef::Resource.build_from_file(cookbook_name, filename, self)
|
97
97
|
end
|
98
98
|
end
|
99
99
|
|
data/lib/chef/runner.rb
CHANGED
@@ -74,8 +74,21 @@ class Chef
|
|
74
74
|
|
75
75
|
# Execute each resource.
|
76
76
|
run_context.resource_collection.execute_each_resource do |resource|
|
77
|
-
|
78
|
-
|
77
|
+
begin
|
78
|
+
Chef::Log.debug("Processing #{resource} on #{run_context.node.name}")
|
79
|
+
|
80
|
+
# Execute each of this resource's actions.
|
81
|
+
Array(resource.action).each {|action| run_action(resource, action)}
|
82
|
+
rescue => e
|
83
|
+
Chef::Log.error("#{resource} (#{resource.source_line}) had an error:\n#{e}\n#{e.backtrace.join("\n")}")
|
84
|
+
if resource.retries > 0
|
85
|
+
resource.retries -= 1
|
86
|
+
Chef::Log.info("Retrying execution of #{resource}, #{resource.retries} attempt(s) left")
|
87
|
+
sleep resource.retry_delay
|
88
|
+
retry
|
89
|
+
end
|
90
|
+
raise e unless resource.ignore_failure
|
91
|
+
end
|
79
92
|
end
|
80
93
|
|
81
94
|
# Run all our :delayed actions
|
data/lib/chef/shell_out.rb
CHANGED
@@ -190,7 +190,7 @@ class Chef
|
|
190
190
|
# Chef::Exceptions::ShellCommandFailed::: via +invalid!+
|
191
191
|
def error!
|
192
192
|
unless Array(valid_exit_codes).include?(exitstatus)
|
193
|
-
invalid!("Expected process to exit
|
193
|
+
invalid!("Expected process to exit with #{valid_exit_codes.inspect}, but received '#{exitstatus}'")
|
194
194
|
end
|
195
195
|
end
|
196
196
|
|
data/lib/chef/solr_query.rb
CHANGED
@@ -50,7 +50,7 @@ class Chef
|
|
50
50
|
@database = Chef::Config[:couchdb_database]
|
51
51
|
@couchdb = Chef::CouchDB.new(nil, Chef::Config[:couchdb_database])
|
52
52
|
else
|
53
|
-
unless couchdb.
|
53
|
+
unless couchdb.respond_to?(:couchdb_database)
|
54
54
|
Chef::Log.warn("Passing the database name to Chef::Solr::Query initialization is deprecated. Please pass in the Chef::CouchDB object instead.")
|
55
55
|
@database = couchdb
|
56
56
|
@couchdb = Chef::CouchDB.new(nil, couchdb)
|
@@ -77,7 +77,7 @@ task :default => [ :test_cookbooks ]
|
|
77
77
|
|
78
78
|
desc "Create a new cookbook (with COOKBOOK=name, optional CB_PREFIX=site-)"
|
79
79
|
task :new_cookbook do
|
80
|
-
puts "***WARN: rake new_cookbook is deprecated. Please use 'knife cookbook
|
80
|
+
puts "***WARN: rake new_cookbook is deprecated. Please use 'knife cookbook create COOKBOOK' command.***"
|
81
81
|
create_cookbook(File.join(TOPDIR, "#{ENV["CB_PREFIX"]}cookbooks"))
|
82
82
|
create_readme(File.join(TOPDIR, "#{ENV["CB_PREFIX"]}cookbooks"))
|
83
83
|
create_metadata(File.join(TOPDIR, "#{ENV["CB_PREFIX"]}cookbooks"))
|
data/lib/chef/version.rb
CHANGED
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 0.10.2
|
4
|
+
version: 0.10.4.rc.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Adam Jacob
|
@@ -10,69 +9,64 @@ autorequire:
|
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
11
|
|
13
|
-
date: 2011-
|
12
|
+
date: 2011-07-26 00:00:00 -07:00
|
14
13
|
default_executable:
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: mixlib-config
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
20
|
requirements:
|
22
21
|
- - ">="
|
23
22
|
- !ruby/object:Gem::Version
|
24
23
|
version: 1.1.2
|
25
|
-
|
26
|
-
version_requirements: *id001
|
24
|
+
version:
|
27
25
|
- !ruby/object:Gem::Dependency
|
28
26
|
name: mixlib-cli
|
29
|
-
|
30
|
-
|
31
|
-
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
32
30
|
requirements:
|
33
31
|
- - ">="
|
34
32
|
- !ruby/object:Gem::Version
|
35
33
|
version: 1.1.0
|
36
|
-
|
37
|
-
version_requirements: *id002
|
34
|
+
version:
|
38
35
|
- !ruby/object:Gem::Dependency
|
39
36
|
name: mixlib-log
|
40
|
-
|
41
|
-
|
42
|
-
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
40
|
requirements:
|
44
41
|
- - ">="
|
45
42
|
- !ruby/object:Gem::Version
|
46
43
|
version: 1.3.0
|
47
|
-
|
48
|
-
version_requirements: *id003
|
44
|
+
version:
|
49
45
|
- !ruby/object:Gem::Dependency
|
50
46
|
name: mixlib-authentication
|
51
|
-
|
52
|
-
|
53
|
-
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
50
|
requirements:
|
55
51
|
- - ">="
|
56
52
|
- !ruby/object:Gem::Version
|
57
53
|
version: 1.1.0
|
58
|
-
|
59
|
-
version_requirements: *id004
|
54
|
+
version:
|
60
55
|
- !ruby/object:Gem::Dependency
|
61
56
|
name: ohai
|
62
|
-
|
63
|
-
|
64
|
-
|
57
|
+
type: :runtime
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
60
|
requirements:
|
66
61
|
- - ">="
|
67
62
|
- !ruby/object:Gem::Version
|
68
63
|
version: 0.6.0
|
69
|
-
|
70
|
-
version_requirements: *id005
|
64
|
+
version:
|
71
65
|
- !ruby/object:Gem::Dependency
|
72
66
|
name: rest-client
|
73
|
-
|
74
|
-
|
75
|
-
|
67
|
+
type: :runtime
|
68
|
+
version_requirement:
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
76
70
|
requirements:
|
77
71
|
- - ">="
|
78
72
|
- !ruby/object:Gem::Version
|
@@ -80,24 +74,22 @@ dependencies:
|
|
80
74
|
- - <
|
81
75
|
- !ruby/object:Gem::Version
|
82
76
|
version: 1.7.0
|
83
|
-
|
84
|
-
version_requirements: *id006
|
77
|
+
version:
|
85
78
|
- !ruby/object:Gem::Dependency
|
86
79
|
name: bunny
|
87
|
-
|
88
|
-
|
89
|
-
|
80
|
+
type: :runtime
|
81
|
+
version_requirement:
|
82
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
83
|
requirements:
|
91
84
|
- - ">="
|
92
85
|
- !ruby/object:Gem::Version
|
93
86
|
version: 0.6.0
|
94
|
-
|
95
|
-
version_requirements: *id007
|
87
|
+
version:
|
96
88
|
- !ruby/object:Gem::Dependency
|
97
89
|
name: json
|
98
|
-
|
99
|
-
|
100
|
-
|
90
|
+
type: :runtime
|
91
|
+
version_requirement:
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
101
93
|
requirements:
|
102
94
|
- - ">="
|
103
95
|
- !ruby/object:Gem::Version
|
@@ -105,85 +97,77 @@ dependencies:
|
|
105
97
|
- - <=
|
106
98
|
- !ruby/object:Gem::Version
|
107
99
|
version: 1.5.2
|
108
|
-
|
109
|
-
version_requirements: *id008
|
100
|
+
version:
|
110
101
|
- !ruby/object:Gem::Dependency
|
111
102
|
name: treetop
|
112
|
-
|
113
|
-
|
114
|
-
|
103
|
+
type: :runtime
|
104
|
+
version_requirement:
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
115
106
|
requirements:
|
116
107
|
- - ~>
|
117
108
|
- !ruby/object:Gem::Version
|
118
109
|
version: 1.4.9
|
119
|
-
|
120
|
-
version_requirements: *id009
|
110
|
+
version:
|
121
111
|
- !ruby/object:Gem::Dependency
|
122
112
|
name: net-ssh
|
123
|
-
|
124
|
-
|
125
|
-
|
113
|
+
type: :runtime
|
114
|
+
version_requirement:
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
126
116
|
requirements:
|
127
117
|
- - ~>
|
128
118
|
- !ruby/object:Gem::Version
|
129
119
|
version: 2.1.3
|
130
|
-
|
131
|
-
version_requirements: *id010
|
120
|
+
version:
|
132
121
|
- !ruby/object:Gem::Dependency
|
133
122
|
name: net-ssh-multi
|
134
|
-
|
135
|
-
|
136
|
-
|
123
|
+
type: :runtime
|
124
|
+
version_requirement:
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
126
|
requirements:
|
138
127
|
- - ~>
|
139
128
|
- !ruby/object:Gem::Version
|
140
|
-
version: 1.0
|
141
|
-
|
142
|
-
version_requirements: *id011
|
129
|
+
version: 1.1.0
|
130
|
+
version:
|
143
131
|
- !ruby/object:Gem::Dependency
|
144
132
|
name: erubis
|
145
|
-
|
146
|
-
|
147
|
-
|
133
|
+
type: :runtime
|
134
|
+
version_requirement:
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
148
136
|
requirements:
|
149
137
|
- - ">="
|
150
138
|
- !ruby/object:Gem::Version
|
151
139
|
version: "0"
|
152
|
-
|
153
|
-
version_requirements: *id012
|
140
|
+
version:
|
154
141
|
- !ruby/object:Gem::Dependency
|
155
142
|
name: moneta
|
156
|
-
|
157
|
-
|
158
|
-
|
143
|
+
type: :runtime
|
144
|
+
version_requirement:
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
159
146
|
requirements:
|
160
147
|
- - ">="
|
161
148
|
- !ruby/object:Gem::Version
|
162
149
|
version: "0"
|
163
|
-
|
164
|
-
version_requirements: *id013
|
150
|
+
version:
|
165
151
|
- !ruby/object:Gem::Dependency
|
166
152
|
name: highline
|
167
|
-
|
168
|
-
|
169
|
-
|
153
|
+
type: :runtime
|
154
|
+
version_requirement:
|
155
|
+
version_requirements: !ruby/object:Gem::Requirement
|
170
156
|
requirements:
|
171
157
|
- - ">="
|
172
158
|
- !ruby/object:Gem::Version
|
173
159
|
version: "0"
|
174
|
-
|
175
|
-
version_requirements: *id014
|
160
|
+
version:
|
176
161
|
- !ruby/object:Gem::Dependency
|
177
162
|
name: uuidtools
|
178
|
-
|
179
|
-
|
180
|
-
|
163
|
+
type: :runtime
|
164
|
+
version_requirement:
|
165
|
+
version_requirements: !ruby/object:Gem::Requirement
|
181
166
|
requirements:
|
182
167
|
- - ">="
|
183
168
|
- !ruby/object:Gem::Version
|
184
169
|
version: "0"
|
185
|
-
|
186
|
-
version_requirements: *id015
|
170
|
+
version:
|
187
171
|
description: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
|
188
172
|
email: adam@opscode.com
|
189
173
|
executables:
|
@@ -199,445 +183,445 @@ extra_rdoc_files:
|
|
199
183
|
files:
|
200
184
|
- LICENSE
|
201
185
|
- README.rdoc
|
202
|
-
- distro/
|
203
|
-
- distro/
|
204
|
-
- distro/
|
205
|
-
- distro/arch/etc/conf.d/chef-server.conf
|
206
|
-
- distro/arch/etc/conf.d/chef-solr.conf
|
207
|
-
- distro/arch/etc/rc.d/chef-client
|
208
|
-
- distro/arch/etc/rc.d/chef-expander
|
209
|
-
- distro/arch/etc/rc.d/chef-server
|
210
|
-
- distro/arch/etc/rc.d/chef-server-webui
|
211
|
-
- distro/arch/etc/rc.d/chef-solr
|
186
|
+
- distro/common/html/knife-search.1.html
|
187
|
+
- distro/common/html/knife-node.1.html
|
188
|
+
- distro/common/html/knife-tag.1.html
|
212
189
|
- distro/common/html/chef-client.8.html
|
213
|
-
- distro/common/html/chef-expander.8.html
|
214
|
-
- distro/common/html/chef-expanderctl.8.html
|
215
|
-
- distro/common/html/chef-server-webui.8.html
|
216
|
-
- distro/common/html/chef-server.8.html
|
217
190
|
- distro/common/html/chef-solo.8.html
|
218
|
-
- distro/common/html/chef-solr.8.html
|
219
|
-
- distro/common/html/knife-bootstrap.1.html
|
220
|
-
- distro/common/html/knife-client.1.html
|
221
|
-
- distro/common/html/knife-configure.1.html
|
222
|
-
- distro/common/html/knife-cookbook-site.1.html
|
223
|
-
- distro/common/html/knife-cookbook.1.html
|
224
|
-
- distro/common/html/knife-data-bag.1.html
|
225
|
-
- distro/common/html/knife-environment.1.html
|
226
|
-
- distro/common/html/knife-exec.1.html
|
227
|
-
- distro/common/html/knife-index.1.html
|
228
|
-
- distro/common/html/knife-node.1.html
|
229
|
-
- distro/common/html/knife-recipe.1.html
|
230
191
|
- distro/common/html/knife-role.1.html
|
231
|
-
- distro/common/html/
|
232
|
-
- distro/common/html/knife-
|
192
|
+
- distro/common/html/chef-server-webui.8.html
|
193
|
+
- distro/common/html/knife-index.1.html
|
233
194
|
- distro/common/html/knife-status.1.html
|
234
|
-
- distro/common/html/knife-
|
195
|
+
- distro/common/html/knife-environment.1.html
|
196
|
+
- distro/common/html/knife-recipe.1.html
|
197
|
+
- distro/common/html/knife-data-bag.1.html
|
198
|
+
- distro/common/html/knife-exec.1.html
|
199
|
+
- distro/common/html/chef-solr.8.html
|
200
|
+
- distro/common/html/knife-configure.1.html
|
201
|
+
- distro/common/html/knife-client.1.html
|
202
|
+
- distro/common/html/chef-expanderctl.8.html
|
235
203
|
- distro/common/html/knife.1.html
|
236
204
|
- distro/common/html/shef.1.html
|
205
|
+
- distro/common/html/knife-cookbook.1.html
|
206
|
+
- distro/common/html/chef-server.8.html
|
207
|
+
- distro/common/html/knife-ssh.1.html
|
208
|
+
- distro/common/html/chef-expander.8.html
|
209
|
+
- distro/common/html/knife-bootstrap.1.html
|
210
|
+
- distro/common/html/knife-cookbook-site.1.html
|
211
|
+
- distro/common/man/man1/knife-ssh.1
|
212
|
+
- distro/common/man/man1/knife-environment.1
|
237
213
|
- distro/common/man/man1/knife-bootstrap.1
|
238
|
-
- distro/common/man/man1/knife-client.1
|
239
|
-
- distro/common/man/man1/knife-configure.1
|
240
|
-
- distro/common/man/man1/knife-cookbook-site.1
|
241
214
|
- distro/common/man/man1/knife-cookbook.1
|
242
|
-
- distro/common/man/man1/knife-data-bag.1
|
243
|
-
- distro/common/man/man1/knife-environment.1
|
244
215
|
- distro/common/man/man1/knife-exec.1
|
245
|
-
- distro/common/man/man1/knife-index.1
|
246
|
-
- distro/common/man/man1/knife-node.1
|
247
|
-
- distro/common/man/man1/knife-role.1
|
248
|
-
- distro/common/man/man1/knife-search.1
|
249
|
-
- distro/common/man/man1/knife-ssh.1
|
250
|
-
- distro/common/man/man1/knife-status.1
|
251
216
|
- distro/common/man/man1/knife-tag.1
|
217
|
+
- distro/common/man/man1/knife-status.1
|
252
218
|
- distro/common/man/man1/knife.1
|
219
|
+
- distro/common/man/man1/knife-data-bag.1
|
220
|
+
- distro/common/man/man1/knife-index.1
|
221
|
+
- distro/common/man/man1/knife-configure.1
|
222
|
+
- distro/common/man/man1/knife-search.1
|
223
|
+
- distro/common/man/man1/knife-node.1
|
224
|
+
- distro/common/man/man1/knife-client.1
|
253
225
|
- distro/common/man/man1/shef.1
|
226
|
+
- distro/common/man/man1/knife-role.1
|
227
|
+
- distro/common/man/man1/knife-cookbook-site.1
|
228
|
+
- distro/common/man/man8/chef-server.8
|
254
229
|
- distro/common/man/man8/chef-client.8
|
255
|
-
- distro/common/man/man8/chef-expander.8
|
256
|
-
- distro/common/man/man8/chef-expanderctl.8
|
257
230
|
- distro/common/man/man8/chef-server-webui.8
|
258
|
-
- distro/common/man/man8/chef-
|
231
|
+
- distro/common/man/man8/chef-expander.8
|
259
232
|
- distro/common/man/man8/chef-solo.8
|
233
|
+
- distro/common/man/man8/chef-expanderctl.8
|
260
234
|
- distro/common/man/man8/chef-solr.8
|
235
|
+
- distro/common/markdown/man1/knife-ssh.mkd
|
236
|
+
- distro/common/markdown/man1/knife-role.mkd
|
237
|
+
- distro/common/markdown/man1/knife-cookbook.mkd
|
238
|
+
- distro/common/markdown/man1/shef.mkd
|
239
|
+
- distro/common/markdown/man1/knife-node.mkd
|
261
240
|
- distro/common/markdown/man1/knife-bootstrap.mkd
|
262
|
-
- distro/common/markdown/man1/knife-client.mkd
|
263
|
-
- distro/common/markdown/man1/knife-configure.mkd
|
264
241
|
- distro/common/markdown/man1/knife-cookbook-site.mkd
|
265
|
-
- distro/common/markdown/man1/knife-
|
242
|
+
- distro/common/markdown/man1/knife-client.mkd
|
243
|
+
- distro/common/markdown/man1/knife.mkd
|
244
|
+
- distro/common/markdown/man1/knife-status.mkd
|
266
245
|
- distro/common/markdown/man1/knife-data-bag.mkd
|
246
|
+
- distro/common/markdown/man1/knife-configure.mkd
|
247
|
+
- distro/common/markdown/man1/knife-search.mkd
|
267
248
|
- distro/common/markdown/man1/knife-environment.mkd
|
268
|
-
- distro/common/markdown/man1/knife-exec.mkd
|
269
249
|
- distro/common/markdown/man1/knife-index.mkd
|
270
|
-
- distro/common/markdown/man1/knife-
|
271
|
-
- distro/common/markdown/man1/knife-role.mkd
|
272
|
-
- distro/common/markdown/man1/knife-search.mkd
|
273
|
-
- distro/common/markdown/man1/knife-ssh.mkd
|
274
|
-
- distro/common/markdown/man1/knife-status.mkd
|
250
|
+
- distro/common/markdown/man1/knife-exec.mkd
|
275
251
|
- distro/common/markdown/man1/knife-tag.mkd
|
276
|
-
- distro/common/markdown/man1/knife.mkd
|
277
|
-
- distro/common/markdown/man1/shef.mkd
|
278
|
-
- distro/common/markdown/man8/chef-client.mkd
|
279
|
-
- distro/common/markdown/man8/chef-expander.mkd
|
280
|
-
- distro/common/markdown/man8/chef-expanderctl.mkd
|
281
252
|
- distro/common/markdown/man8/chef-server-webui.mkd
|
282
|
-
- distro/common/markdown/man8/chef-server.mkd
|
283
253
|
- distro/common/markdown/man8/chef-solo.mkd
|
284
254
|
- distro/common/markdown/man8/chef-solr.mkd
|
255
|
+
- distro/common/markdown/man8/chef-client.mkd
|
256
|
+
- distro/common/markdown/man8/chef-expander.mkd
|
257
|
+
- distro/common/markdown/man8/chef-server.mkd
|
258
|
+
- distro/common/markdown/man8/chef-expanderctl.mkd
|
285
259
|
- distro/common/markdown/README
|
286
|
-
- distro/
|
287
|
-
- distro/
|
288
|
-
- distro/
|
260
|
+
- distro/redhat/etc/sysconfig/chef-server-webui
|
261
|
+
- distro/redhat/etc/sysconfig/chef-solr
|
262
|
+
- distro/redhat/etc/sysconfig/chef-expander
|
263
|
+
- distro/redhat/etc/sysconfig/chef-client
|
264
|
+
- distro/redhat/etc/sysconfig/chef-server
|
265
|
+
- distro/redhat/etc/init.d/chef-server-webui
|
266
|
+
- distro/redhat/etc/init.d/chef-solr
|
267
|
+
- distro/redhat/etc/init.d/chef-expander
|
268
|
+
- distro/redhat/etc/init.d/chef-client
|
269
|
+
- distro/redhat/etc/init.d/chef-server
|
270
|
+
- distro/redhat/etc/logrotate.d/chef-server-webui
|
271
|
+
- distro/redhat/etc/logrotate.d/chef-solr
|
272
|
+
- distro/redhat/etc/logrotate.d/chef-expander
|
273
|
+
- distro/redhat/etc/logrotate.d/chef-client
|
274
|
+
- distro/redhat/etc/logrotate.d/chef-server
|
275
|
+
- distro/arch/etc/conf.d/chef-server-webui.conf
|
276
|
+
- distro/arch/etc/conf.d/chef-client.conf
|
277
|
+
- distro/arch/etc/conf.d/chef-solr.conf
|
278
|
+
- distro/arch/etc/conf.d/chef-expander.conf
|
279
|
+
- distro/arch/etc/conf.d/chef-server.conf
|
280
|
+
- distro/arch/etc/rc.d/chef-server-webui
|
281
|
+
- distro/arch/etc/rc.d/chef-solr
|
282
|
+
- distro/arch/etc/rc.d/chef-expander
|
283
|
+
- distro/arch/etc/rc.d/chef-client
|
284
|
+
- distro/arch/etc/rc.d/chef-server
|
289
285
|
- distro/debian/etc/default/chef-server-webui
|
290
286
|
- distro/debian/etc/default/chef-solr
|
287
|
+
- distro/debian/etc/default/chef-expander
|
288
|
+
- distro/debian/etc/default/chef-client
|
289
|
+
- distro/debian/etc/default/chef-server
|
290
|
+
- distro/debian/etc/init.d/chef-server-webui
|
291
|
+
- distro/debian/etc/init.d/chef-solr
|
292
|
+
- distro/debian/etc/init.d/chef-expander
|
293
|
+
- distro/debian/etc/init.d/chef-client
|
294
|
+
- distro/debian/etc/init.d/chef-server
|
295
|
+
- distro/debian/etc/init/chef-server-webui.conf
|
291
296
|
- distro/debian/etc/init/chef-client.conf
|
297
|
+
- distro/debian/etc/init/chef-solr.conf
|
292
298
|
- distro/debian/etc/init/chef-expander.conf
|
293
|
-
- distro/debian/etc/init/chef-server-webui.conf
|
294
299
|
- distro/debian/etc/init/chef-server.conf
|
295
|
-
- distro/debian/etc/init/chef-solr.conf
|
296
|
-
- distro/debian/etc/init.d/chef-client
|
297
|
-
- distro/debian/etc/init.d/chef-expander
|
298
|
-
- distro/debian/etc/init.d/chef-server
|
299
|
-
- distro/debian/etc/init.d/chef-server-webui
|
300
|
-
- distro/debian/etc/init.d/chef-solr
|
301
300
|
- distro/README
|
302
|
-
-
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
-
|
312
|
-
-
|
313
|
-
-
|
314
|
-
-
|
315
|
-
-
|
316
|
-
-
|
317
|
-
- lib/chef/api_client.rb
|
318
|
-
- lib/chef/application/agent.rb
|
319
|
-
- lib/chef/application/client.rb
|
320
|
-
- lib/chef/application/knife.rb
|
321
|
-
- lib/chef/application/solo.rb
|
301
|
+
- lib/chef/shell_out/windows.rb
|
302
|
+
- lib/chef/shell_out/unix.rb
|
303
|
+
- lib/chef/handler.rb
|
304
|
+
- lib/chef/solr_query.rb
|
305
|
+
- lib/chef/runner.rb
|
306
|
+
- lib/chef/providers.rb
|
307
|
+
- lib/chef/exceptions.rb
|
308
|
+
- lib/chef/file_cache.rb
|
309
|
+
- lib/chef/solr_query/lucene_nodes.rb
|
310
|
+
- lib/chef/solr_query/lucene.treetop
|
311
|
+
- lib/chef/solr_query/query_transform.rb
|
312
|
+
- lib/chef/solr_query/solr_http_request.rb
|
313
|
+
- lib/chef/resource_collection/stepable_iterator.rb
|
314
|
+
- lib/chef/webui_user.rb
|
315
|
+
- lib/chef/node.rb
|
322
316
|
- lib/chef/application.rb
|
323
|
-
- lib/chef/applications.rb
|
324
|
-
- lib/chef/certificate.rb
|
325
|
-
- lib/chef/checksum.rb
|
326
|
-
- lib/chef/checksum_cache.rb
|
327
|
-
- lib/chef/client.rb
|
328
|
-
- lib/chef/config.rb
|
329
|
-
- lib/chef/cookbook/chefignore.rb
|
330
|
-
- lib/chef/cookbook/cookbook_collection.rb
|
331
|
-
- lib/chef/cookbook/cookbook_version_loader.rb
|
332
|
-
- lib/chef/cookbook/file_system_file_vendor.rb
|
333
|
-
- lib/chef/cookbook/file_vendor.rb
|
334
|
-
- lib/chef/cookbook/metadata.rb
|
335
|
-
- lib/chef/cookbook/remote_file_vendor.rb
|
336
|
-
- lib/chef/cookbook/syntax_check.rb
|
337
|
-
- lib/chef/cookbook_loader.rb
|
338
|
-
- lib/chef/cookbook_site_streaming_uploader.rb
|
339
|
-
- lib/chef/cookbook_uploader.rb
|
340
|
-
- lib/chef/cookbook_version.rb
|
341
|
-
- lib/chef/cookbook_version_selector.rb
|
342
|
-
- lib/chef/couchdb.rb
|
343
|
-
- lib/chef/daemon.rb
|
344
|
-
- lib/chef/data_bag.rb
|
345
|
-
- lib/chef/data_bag_item.rb
|
346
317
|
- lib/chef/encrypted_data_bag_item.rb
|
347
|
-
- lib/chef/environment.rb
|
348
|
-
- lib/chef/exceptions.rb
|
349
318
|
- lib/chef/file_access_control.rb
|
350
|
-
- lib/chef/
|
351
|
-
- lib/chef/
|
352
|
-
- lib/chef/
|
353
|
-
- lib/chef/
|
354
|
-
- lib/chef/
|
355
|
-
- lib/chef/
|
356
|
-
- lib/chef/
|
357
|
-
- lib/chef/
|
358
|
-
- lib/chef/
|
359
|
-
- lib/chef/knife/
|
360
|
-
- lib/chef/knife/
|
361
|
-
- lib/chef/knife/
|
362
|
-
- lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
|
363
|
-
- lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
|
364
|
-
- lib/chef/knife/bootstrap.rb
|
365
|
-
- lib/chef/knife/client_bulk_delete.rb
|
366
|
-
- lib/chef/knife/client_create.rb
|
367
|
-
- lib/chef/knife/client_delete.rb
|
368
|
-
- lib/chef/knife/client_edit.rb
|
369
|
-
- lib/chef/knife/client_list.rb
|
370
|
-
- lib/chef/knife/client_reregister.rb
|
371
|
-
- lib/chef/knife/client_show.rb
|
372
|
-
- lib/chef/knife/configure.rb
|
319
|
+
- lib/chef/resource.rb
|
320
|
+
- lib/chef/streaming_cookbook_uploader.rb
|
321
|
+
- lib/chef/util/windows.rb
|
322
|
+
- lib/chef/util/file_edit.rb
|
323
|
+
- lib/chef/util/windows/net_use.rb
|
324
|
+
- lib/chef/util/windows/volume.rb
|
325
|
+
- lib/chef/util/windows/net_group.rb
|
326
|
+
- lib/chef/util/windows/net_user.rb
|
327
|
+
- lib/chef/knife/tag_delete.rb
|
328
|
+
- lib/chef/knife/cookbook_metadata_from_file.rb
|
329
|
+
- lib/chef/knife/role_bulk_delete.rb
|
330
|
+
- lib/chef/knife/data_bag_from_file.rb
|
373
331
|
- lib/chef/knife/configure_client.rb
|
374
|
-
- lib/chef/knife/
|
375
|
-
- lib/chef/knife/
|
332
|
+
- lib/chef/knife/search.rb
|
333
|
+
- lib/chef/knife/data_bag_show.rb
|
334
|
+
- lib/chef/knife/client_edit.rb
|
335
|
+
- lib/chef/knife/data_bag_list.rb
|
376
336
|
- lib/chef/knife/cookbook_delete.rb
|
377
|
-
- lib/chef/knife/
|
378
|
-
- lib/chef/knife/
|
379
|
-
- lib/chef/knife/cookbook_metadata.rb
|
380
|
-
- lib/chef/knife/cookbook_metadata_from_file.rb
|
381
|
-
- lib/chef/knife/cookbook_show.rb
|
382
|
-
- lib/chef/knife/cookbook_site_download.rb
|
383
|
-
- lib/chef/knife/cookbook_site_install.rb
|
384
|
-
- lib/chef/knife/cookbook_site_list.rb
|
385
|
-
- lib/chef/knife/cookbook_site_search.rb
|
386
|
-
- lib/chef/knife/cookbook_site_share.rb
|
387
|
-
- lib/chef/knife/cookbook_site_show.rb
|
388
|
-
- lib/chef/knife/cookbook_site_unshare.rb
|
389
|
-
- lib/chef/knife/cookbook_site_vendor.rb
|
390
|
-
- lib/chef/knife/cookbook_test.rb
|
337
|
+
- lib/chef/knife/cookbook_bulk_delete.rb
|
338
|
+
- lib/chef/knife/node_from_file.rb
|
391
339
|
- lib/chef/knife/cookbook_upload.rb
|
392
|
-
- lib/chef/knife/
|
393
|
-
- lib/chef/knife/core/cookbook_scm_repo.rb
|
394
|
-
- lib/chef/knife/core/generic_presenter.rb
|
395
|
-
- lib/chef/knife/core/node_editor.rb
|
396
|
-
- lib/chef/knife/core/node_presenter.rb
|
340
|
+
- lib/chef/knife/cookbook_site_unshare.rb
|
397
341
|
- lib/chef/knife/core/object_loader.rb
|
398
342
|
- lib/chef/knife/core/subcommand_loader.rb
|
399
|
-
- lib/chef/knife/core/
|
343
|
+
- lib/chef/knife/core/cookbook_scm_repo.rb
|
344
|
+
- lib/chef/knife/core/node_presenter.rb
|
345
|
+
- lib/chef/knife/core/bootstrap_context.rb
|
400
346
|
- lib/chef/knife/core/ui.rb
|
347
|
+
- lib/chef/knife/core/text_formatter.rb
|
348
|
+
- lib/chef/knife/core/generic_presenter.rb
|
349
|
+
- lib/chef/knife/core/node_editor.rb
|
350
|
+
- lib/chef/knife/bootstrap.rb
|
351
|
+
- lib/chef/knife/cookbook_metadata.rb
|
352
|
+
- lib/chef/knife/node_show.rb
|
401
353
|
- lib/chef/knife/data_bag_create.rb
|
402
|
-
- lib/chef/knife/
|
403
|
-
- lib/chef/knife/
|
404
|
-
- lib/chef/knife/
|
405
|
-
- lib/chef/knife/
|
406
|
-
- lib/chef/knife/
|
354
|
+
- lib/chef/knife/recipe_list.rb
|
355
|
+
- lib/chef/knife/client_show.rb
|
356
|
+
- lib/chef/knife/role_from_file.rb
|
357
|
+
- lib/chef/knife/node_list.rb
|
358
|
+
- lib/chef/knife/role_show.rb
|
359
|
+
- lib/chef/knife/environment_show.rb
|
360
|
+
- lib/chef/knife/node_create.rb
|
361
|
+
- lib/chef/knife/cookbook_download.rb
|
362
|
+
- lib/chef/knife/role_edit.rb
|
407
363
|
- lib/chef/knife/environment_create.rb
|
408
|
-
- lib/chef/knife/
|
409
|
-
- lib/chef/knife/
|
410
|
-
- lib/chef/knife/
|
364
|
+
- lib/chef/knife/configure.rb
|
365
|
+
- lib/chef/knife/status.rb
|
366
|
+
- lib/chef/knife/cookbook_test.rb
|
367
|
+
- lib/chef/knife/cookbook_show.rb
|
368
|
+
- lib/chef/knife/client_delete.rb
|
411
369
|
- lib/chef/knife/environment_list.rb
|
412
|
-
- lib/chef/knife/environment_show.rb
|
413
|
-
- lib/chef/knife/exec.rb
|
414
|
-
- lib/chef/knife/help.rb
|
415
370
|
- lib/chef/knife/index_rebuild.rb
|
416
|
-
- lib/chef/knife/node_bulk_delete.rb
|
417
|
-
- lib/chef/knife/node_create.rb
|
418
371
|
- lib/chef/knife/node_delete.rb
|
419
|
-
- lib/chef/knife/
|
420
|
-
- lib/chef/knife/node_from_file.rb
|
421
|
-
- lib/chef/knife/node_list.rb
|
372
|
+
- lib/chef/knife/environment_from_file.rb
|
422
373
|
- lib/chef/knife/node_run_list_add.rb
|
423
|
-
- lib/chef/knife/
|
424
|
-
- lib/chef/knife/
|
425
|
-
- lib/chef/knife/
|
426
|
-
- lib/chef/knife/role_bulk_delete.rb
|
374
|
+
- lib/chef/knife/cookbook_site_install.rb
|
375
|
+
- lib/chef/knife/help_topics.rb
|
376
|
+
- lib/chef/knife/data_bag_delete.rb
|
427
377
|
- lib/chef/knife/role_create.rb
|
428
|
-
- lib/chef/knife/
|
429
|
-
- lib/chef/knife/
|
430
|
-
- lib/chef/knife/
|
431
|
-
- lib/chef/knife/
|
432
|
-
- lib/chef/knife/
|
433
|
-
- lib/chef/knife/
|
378
|
+
- lib/chef/knife/cookbook_site_list.rb
|
379
|
+
- lib/chef/knife/client_bulk_delete.rb
|
380
|
+
- lib/chef/knife/data_bag_edit.rb
|
381
|
+
- lib/chef/knife/client_create.rb
|
382
|
+
- lib/chef/knife/node_run_list_remove.rb
|
383
|
+
- lib/chef/knife/cookbook_create.rb
|
384
|
+
- lib/chef/knife/node_edit.rb
|
385
|
+
- lib/chef/knife/exec.rb
|
386
|
+
- lib/chef/knife/cookbook_list.rb
|
387
|
+
- lib/chef/knife/client_list.rb
|
388
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
|
389
|
+
- lib/chef/knife/bootstrap/archlinux-gems.erb
|
390
|
+
- lib/chef/knife/bootstrap/fedora13-gems.erb
|
391
|
+
- lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
|
392
|
+
- lib/chef/knife/bootstrap/centos5-gems.erb
|
434
393
|
- lib/chef/knife/ssh.rb
|
435
|
-
- lib/chef/knife/
|
436
|
-
- lib/chef/knife/
|
437
|
-
- lib/chef/knife/
|
394
|
+
- lib/chef/knife/help.rb
|
395
|
+
- lib/chef/knife/environment_edit.rb
|
396
|
+
- lib/chef/knife/environment_delete.rb
|
397
|
+
- lib/chef/knife/cookbook_site_show.rb
|
398
|
+
- lib/chef/knife/cookbook_site_download.rb
|
399
|
+
- lib/chef/knife/cookbook_site_share.rb
|
400
|
+
- lib/chef/knife/cookbook_site_vendor.rb
|
401
|
+
- lib/chef/knife/cookbook_site_search.rb
|
438
402
|
- lib/chef/knife/tag_list.rb
|
439
|
-
- lib/chef/knife.rb
|
440
|
-
- lib/chef/
|
441
|
-
- lib/chef/
|
442
|
-
- lib/chef/
|
443
|
-
- lib/chef/
|
444
|
-
- lib/chef/
|
445
|
-
- lib/chef/
|
446
|
-
- lib/chef/mixin/command.rb
|
447
|
-
- lib/chef/mixin/convert_to_class_name.rb
|
448
|
-
- lib/chef/mixin/create_path.rb
|
449
|
-
- lib/chef/mixin/deep_merge.rb
|
450
|
-
- lib/chef/mixin/deprecation.rb
|
451
|
-
- lib/chef/mixin/from_file.rb
|
452
|
-
- lib/chef/mixin/language.rb
|
453
|
-
- lib/chef/mixin/language_include_attribute.rb
|
454
|
-
- lib/chef/mixin/language_include_recipe.rb
|
455
|
-
- lib/chef/mixin/params_validate.rb
|
456
|
-
- lib/chef/mixin/recipe_definition_dsl_core.rb
|
457
|
-
- lib/chef/mixin/shell_out.rb
|
458
|
-
- lib/chef/mixin/template.rb
|
459
|
-
- lib/chef/mixin/xml_escape.rb
|
460
|
-
- lib/chef/mixins.rb
|
403
|
+
- lib/chef/knife/node_bulk_delete.rb
|
404
|
+
- lib/chef/knife/tag_create.rb
|
405
|
+
- lib/chef/knife/client_reregister.rb
|
406
|
+
- lib/chef/knife/role_list.rb
|
407
|
+
- lib/chef/knife/role_delete.rb
|
408
|
+
- lib/chef/rest.rb
|
409
|
+
- lib/chef/cookbook_version_selector.rb
|
461
410
|
- lib/chef/monkey_patches/dir.rb
|
411
|
+
- lib/chef/monkey_patches/string.rb
|
462
412
|
- lib/chef/monkey_patches/numeric.rb
|
463
413
|
- lib/chef/monkey_patches/object.rb
|
464
414
|
- lib/chef/monkey_patches/regexp.rb
|
465
|
-
- lib/chef/monkey_patches/string.rb
|
466
415
|
- lib/chef/monkey_patches/tempfile.rb
|
467
|
-
- lib/chef/
|
416
|
+
- lib/chef/shef.rb
|
417
|
+
- lib/chef/handler/json_file.rb
|
418
|
+
- lib/chef/handler/error_report.rb
|
468
419
|
- lib/chef/node/attribute.rb
|
469
|
-
- lib/chef/
|
470
|
-
- lib/chef/
|
471
|
-
- lib/chef/
|
420
|
+
- lib/chef/rest/rest_request.rb
|
421
|
+
- lib/chef/rest/cookie_jar.rb
|
422
|
+
- lib/chef/rest/auth_credentials.rb
|
423
|
+
- lib/chef/tasks/chef_repo.rake
|
424
|
+
- lib/chef/resource_definition.rb
|
425
|
+
- lib/chef/shell_out.rb
|
426
|
+
- lib/chef/index_queue.rb
|
427
|
+
- lib/chef/version.rb
|
428
|
+
- lib/chef/provider/subversion.rb
|
429
|
+
- lib/chef/provider/package/easy_install.rb
|
430
|
+
- lib/chef/provider/package/solaris.rb
|
431
|
+
- lib/chef/provider/package/rubygems.rb
|
432
|
+
- lib/chef/provider/package/macports.rb
|
433
|
+
- lib/chef/provider/package/yum-dump.py
|
434
|
+
- lib/chef/provider/package/dpkg.rb
|
435
|
+
- lib/chef/provider/package/zypper.rb
|
436
|
+
- lib/chef/provider/package/yum.rb
|
437
|
+
- lib/chef/provider/package/apt.rb
|
438
|
+
- lib/chef/provider/package/pacman.rb
|
439
|
+
- lib/chef/provider/package/portage.rb
|
440
|
+
- lib/chef/provider/package/freebsd.rb
|
441
|
+
- lib/chef/provider/package/rpm.rb
|
472
442
|
- lib/chef/provider/breakpoint.rb
|
473
|
-
- lib/chef/provider/
|
474
|
-
- lib/chef/provider/
|
475
|
-
- lib/chef/provider/
|
443
|
+
- lib/chef/provider/execute.rb
|
444
|
+
- lib/chef/provider/ohai.rb
|
445
|
+
- lib/chef/provider/service/arch.rb
|
446
|
+
- lib/chef/provider/service/solaris.rb
|
447
|
+
- lib/chef/provider/service/windows.rb
|
448
|
+
- lib/chef/provider/service/systemd.rb
|
449
|
+
- lib/chef/provider/service/upstart.rb
|
450
|
+
- lib/chef/provider/service/redhat.rb
|
451
|
+
- lib/chef/provider/service/simple.rb
|
452
|
+
- lib/chef/provider/service/debian.rb
|
453
|
+
- lib/chef/provider/service/gentoo.rb
|
454
|
+
- lib/chef/provider/service/insserv.rb
|
455
|
+
- lib/chef/provider/service/freebsd.rb
|
456
|
+
- lib/chef/provider/service/init.rb
|
457
|
+
- lib/chef/provider/mount/windows.rb
|
458
|
+
- lib/chef/provider/mount/mount.rb
|
476
459
|
- lib/chef/provider/deploy/revision.rb
|
477
460
|
- lib/chef/provider/deploy/timestamped.rb
|
478
|
-
- lib/chef/provider/
|
461
|
+
- lib/chef/provider/template.rb
|
462
|
+
- lib/chef/provider/git.rb
|
463
|
+
- lib/chef/provider/link.rb
|
464
|
+
- lib/chef/provider/service.rb
|
465
|
+
- lib/chef/provider/remote_directory.rb
|
466
|
+
- lib/chef/provider/remote_file.rb
|
467
|
+
- lib/chef/provider/user.rb
|
479
468
|
- lib/chef/provider/directory.rb
|
469
|
+
- lib/chef/provider/cookbook_file.rb
|
470
|
+
- lib/chef/provider/ruby_block.rb
|
480
471
|
- lib/chef/provider/env/windows.rb
|
472
|
+
- lib/chef/provider/script.rb
|
481
473
|
- lib/chef/provider/env.rb
|
482
|
-
- lib/chef/provider/
|
483
|
-
- lib/chef/provider/execute.rb
|
484
|
-
- lib/chef/provider/file.rb
|
485
|
-
- lib/chef/provider/git.rb
|
486
|
-
- lib/chef/provider/group/aix.rb
|
487
|
-
- lib/chef/provider/group/dscl.rb
|
474
|
+
- lib/chef/provider/http_request.rb
|
488
475
|
- lib/chef/provider/group/gpasswd.rb
|
476
|
+
- lib/chef/provider/group/windows.rb
|
477
|
+
- lib/chef/provider/group/dscl.rb
|
478
|
+
- lib/chef/provider/group/suse.rb
|
479
|
+
- lib/chef/provider/group/usermod.rb
|
480
|
+
- lib/chef/provider/group/aix.rb
|
489
481
|
- lib/chef/provider/group/groupadd.rb
|
490
482
|
- lib/chef/provider/group/pw.rb
|
491
|
-
- lib/chef/provider/
|
492
|
-
- lib/chef/provider/group/windows.rb
|
493
|
-
- lib/chef/provider/group.rb
|
494
|
-
- lib/chef/provider/http_request.rb
|
495
|
-
- lib/chef/provider/ifconfig.rb
|
496
|
-
- lib/chef/provider/link.rb
|
497
|
-
- lib/chef/provider/log.rb
|
483
|
+
- lib/chef/provider/erl_call.rb
|
498
484
|
- lib/chef/provider/mdadm.rb
|
499
|
-
- lib/chef/provider/
|
500
|
-
- lib/chef/provider/
|
485
|
+
- lib/chef/provider/log.rb
|
486
|
+
- lib/chef/provider/deploy.rb
|
487
|
+
- lib/chef/provider/file.rb
|
488
|
+
- lib/chef/provider/cron.rb
|
501
489
|
- lib/chef/provider/mount.rb
|
502
|
-
- lib/chef/provider/ohai.rb
|
503
|
-
- lib/chef/provider/package/apt.rb
|
504
|
-
- lib/chef/provider/package/dpkg.rb
|
505
|
-
- lib/chef/provider/package/easy_install.rb
|
506
|
-
- lib/chef/provider/package/freebsd.rb
|
507
|
-
- lib/chef/provider/package/macports.rb
|
508
|
-
- lib/chef/provider/package/pacman.rb
|
509
|
-
- lib/chef/provider/package/portage.rb
|
510
|
-
- lib/chef/provider/package/rpm.rb
|
511
|
-
- lib/chef/provider/package/rubygems.rb
|
512
|
-
- lib/chef/provider/package/solaris.rb
|
513
|
-
- lib/chef/provider/package/yum-dump.py
|
514
|
-
- lib/chef/provider/package/yum.rb
|
515
|
-
- lib/chef/provider/package/zypper.rb
|
516
|
-
- lib/chef/provider/package.rb
|
517
|
-
- lib/chef/provider/remote_directory.rb
|
518
|
-
- lib/chef/provider/remote_file.rb
|
519
|
-
- lib/chef/provider/route.rb
|
520
|
-
- lib/chef/provider/ruby_block.rb
|
521
|
-
- lib/chef/provider/script.rb
|
522
|
-
- lib/chef/provider/service/arch.rb
|
523
|
-
- lib/chef/provider/service/debian.rb
|
524
|
-
- lib/chef/provider/service/freebsd.rb
|
525
|
-
- lib/chef/provider/service/gentoo.rb
|
526
|
-
- lib/chef/provider/service/init.rb
|
527
|
-
- lib/chef/provider/service/insserv.rb
|
528
|
-
- lib/chef/provider/service/redhat.rb
|
529
|
-
- lib/chef/provider/service/simple.rb
|
530
|
-
- lib/chef/provider/service/solaris.rb
|
531
|
-
- lib/chef/provider/service/upstart.rb
|
532
|
-
- lib/chef/provider/service/windows.rb
|
533
|
-
- lib/chef/provider/service.rb
|
534
|
-
- lib/chef/provider/subversion.rb
|
535
|
-
- lib/chef/provider/template.rb
|
536
|
-
- lib/chef/provider/user/dscl.rb
|
537
|
-
- lib/chef/provider/user/pw.rb
|
538
490
|
- lib/chef/provider/user/useradd.rb
|
539
491
|
- lib/chef/provider/user/windows.rb
|
540
|
-
- lib/chef/provider/user.rb
|
541
|
-
- lib/chef/provider.rb
|
542
|
-
- lib/chef/
|
492
|
+
- lib/chef/provider/user/dscl.rb
|
493
|
+
- lib/chef/provider/user/pw.rb
|
494
|
+
- lib/chef/provider/cron/solaris.rb
|
495
|
+
- lib/chef/provider/package.rb
|
496
|
+
- lib/chef/provider/route.rb
|
497
|
+
- lib/chef/provider/ifconfig.rb
|
498
|
+
- lib/chef/provider/group.rb
|
543
499
|
- lib/chef/recipe.rb
|
544
|
-
- lib/chef/
|
545
|
-
- lib/chef/
|
546
|
-
- lib/chef/
|
547
|
-
- lib/chef/
|
548
|
-
- lib/chef/
|
549
|
-
- lib/chef/
|
550
|
-
- lib/chef/
|
551
|
-
- lib/chef/
|
552
|
-
- lib/chef/
|
553
|
-
- lib/chef/
|
500
|
+
- lib/chef/client.rb
|
501
|
+
- lib/chef/mash.rb
|
502
|
+
- lib/chef/checksum.rb
|
503
|
+
- lib/chef/resources.rb
|
504
|
+
- lib/chef/shef/shef_session.rb
|
505
|
+
- lib/chef/shef/shef_rest.rb
|
506
|
+
- lib/chef/shef/model_wrapper.rb
|
507
|
+
- lib/chef/shef/ext.rb
|
508
|
+
- lib/chef/data_bag.rb
|
509
|
+
- lib/chef/version_constraint.rb
|
510
|
+
- lib/chef/role.rb
|
511
|
+
- lib/chef/openid_registration.rb
|
512
|
+
- lib/chef/application/agent.rb
|
513
|
+
- lib/chef/application/client.rb
|
514
|
+
- lib/chef/application/solo.rb
|
515
|
+
- lib/chef/application/knife.rb
|
516
|
+
- lib/chef/run_status.rb
|
517
|
+
- lib/chef/couchdb.rb
|
518
|
+
- lib/chef/checksum_cache.rb
|
519
|
+
- lib/chef/index_queue/amqp_client.rb
|
520
|
+
- lib/chef/index_queue/consumer.rb
|
521
|
+
- lib/chef/index_queue/indexable.rb
|
522
|
+
- lib/chef/data_bag_item.rb
|
523
|
+
- lib/chef/applications.rb
|
524
|
+
- lib/chef/sandbox.rb
|
525
|
+
- lib/chef/cookbook_site_streaming_uploader.rb
|
526
|
+
- lib/chef/daemon.rb
|
527
|
+
- lib/chef/config.rb
|
528
|
+
- lib/chef/cookbook_uploader.rb
|
529
|
+
- lib/chef/cookbook_loader.rb
|
530
|
+
- lib/chef/api_client.rb
|
531
|
+
- lib/chef/mixins.rb
|
532
|
+
- lib/chef/log.rb
|
533
|
+
- lib/chef/resource_definition_list.rb
|
534
|
+
- lib/chef/resource_collection.rb
|
535
|
+
- lib/chef/nil_argument.rb
|
536
|
+
- lib/chef/run_context.rb
|
537
|
+
- lib/chef/environment.rb
|
538
|
+
- lib/chef/platform.rb
|
539
|
+
- lib/chef/run_list/versioned_recipe_list.rb
|
540
|
+
- lib/chef/run_list/run_list_expansion.rb
|
541
|
+
- lib/chef/run_list/run_list_item.rb
|
542
|
+
- lib/chef/cookbook/file_vendor.rb
|
543
|
+
- lib/chef/cookbook/cookbook_version_loader.rb
|
544
|
+
- lib/chef/cookbook/metadata.rb
|
545
|
+
- lib/chef/cookbook/syntax_check.rb
|
546
|
+
- lib/chef/cookbook/remote_file_vendor.rb
|
547
|
+
- lib/chef/cookbook/cookbook_collection.rb
|
548
|
+
- lib/chef/cookbook/file_system_file_vendor.rb
|
549
|
+
- lib/chef/cookbook/chefignore.rb
|
550
|
+
- lib/chef/cookbook_version.rb
|
551
|
+
- lib/chef/run_list.rb
|
552
|
+
- lib/chef/provider.rb
|
553
|
+
- lib/chef/resource/subversion.rb
|
554
|
+
- lib/chef/resource/rpm_package.rb
|
555
|
+
- lib/chef/resource/gem_package.rb
|
554
556
|
- lib/chef/resource/easy_install_package.rb
|
555
|
-
- lib/chef/resource/
|
556
|
-
- lib/chef/resource/erl_call.rb
|
557
|
+
- lib/chef/resource/breakpoint.rb
|
557
558
|
- lib/chef/resource/execute.rb
|
558
|
-
- lib/chef/resource/
|
559
|
-
- lib/chef/resource/
|
560
|
-
- lib/chef/resource/
|
559
|
+
- lib/chef/resource/ohai.rb
|
560
|
+
- lib/chef/resource/timestamped_deploy.rb
|
561
|
+
- lib/chef/resource/apt_package.rb
|
562
|
+
- lib/chef/resource/template.rb
|
561
563
|
- lib/chef/resource/git.rb
|
562
|
-
- lib/chef/resource/group.rb
|
563
|
-
- lib/chef/resource/http_request.rb
|
564
|
-
- lib/chef/resource/ifconfig.rb
|
565
564
|
- lib/chef/resource/link.rb
|
566
|
-
- lib/chef/resource/log.rb
|
567
|
-
- lib/chef/resource/macports_package.rb
|
568
|
-
- lib/chef/resource/mdadm.rb
|
569
|
-
- lib/chef/resource/mount.rb
|
570
|
-
- lib/chef/resource/ohai.rb
|
571
|
-
- lib/chef/resource/package.rb
|
572
|
-
- lib/chef/resource/pacman_package.rb
|
573
565
|
- lib/chef/resource/perl.rb
|
574
|
-
- lib/chef/resource/
|
575
|
-
- lib/chef/resource/
|
566
|
+
- lib/chef/resource/pacman_package.rb
|
567
|
+
- lib/chef/resource/yum_package.rb
|
568
|
+
- lib/chef/resource/solaris_package.rb
|
569
|
+
- lib/chef/resource/service.rb
|
570
|
+
- lib/chef/resource/dpkg_package.rb
|
576
571
|
- lib/chef/resource/remote_directory.rb
|
577
572
|
- lib/chef/resource/remote_file.rb
|
578
|
-
- lib/chef/resource/
|
579
|
-
- lib/chef/resource/
|
580
|
-
- lib/chef/resource/
|
573
|
+
- lib/chef/resource/user.rb
|
574
|
+
- lib/chef/resource/directory.rb
|
575
|
+
- lib/chef/resource/cookbook_file.rb
|
581
576
|
- lib/chef/resource/ruby_block.rb
|
582
|
-
- lib/chef/resource/
|
577
|
+
- lib/chef/resource/macports_package.rb
|
578
|
+
- lib/chef/resource/python.rb
|
579
|
+
- lib/chef/resource/freebsd_package.rb
|
583
580
|
- lib/chef/resource/script.rb
|
584
|
-
- lib/chef/resource/
|
585
|
-
- lib/chef/resource/
|
586
|
-
- lib/chef/resource/
|
587
|
-
- lib/chef/resource/
|
588
|
-
- lib/chef/resource/
|
589
|
-
- lib/chef/resource/
|
590
|
-
- lib/chef/resource/
|
591
|
-
- lib/chef/resource.rb
|
592
|
-
- lib/chef/
|
593
|
-
- lib/chef/
|
594
|
-
- lib/chef/
|
595
|
-
- lib/chef/
|
596
|
-
- lib/chef/
|
597
|
-
- lib/chef/
|
598
|
-
- lib/chef/
|
599
|
-
- lib/chef/
|
600
|
-
- lib/chef/
|
601
|
-
- lib/chef/
|
602
|
-
- lib/chef/
|
603
|
-
- lib/chef/
|
604
|
-
- lib/chef/run_list/run_list_item.rb
|
605
|
-
- lib/chef/run_list/versioned_recipe_list.rb
|
606
|
-
- lib/chef/run_list.rb
|
607
|
-
- lib/chef/run_status.rb
|
608
|
-
- lib/chef/runner.rb
|
609
|
-
- lib/chef/sandbox.rb
|
581
|
+
- lib/chef/resource/env.rb
|
582
|
+
- lib/chef/resource/scm.rb
|
583
|
+
- lib/chef/resource/http_request.rb
|
584
|
+
- lib/chef/resource/erl_call.rb
|
585
|
+
- lib/chef/resource/mdadm.rb
|
586
|
+
- lib/chef/resource/log.rb
|
587
|
+
- lib/chef/resource/deploy.rb
|
588
|
+
- lib/chef/resource/file.rb
|
589
|
+
- lib/chef/resource/cron.rb
|
590
|
+
- lib/chef/resource/portage_package.rb
|
591
|
+
- lib/chef/resource/ruby.rb
|
592
|
+
- lib/chef/resource/mount.rb
|
593
|
+
- lib/chef/resource/deploy_revision.rb
|
594
|
+
- lib/chef/resource/bash.rb
|
595
|
+
- lib/chef/resource/package.rb
|
596
|
+
- lib/chef/resource/route.rb
|
597
|
+
- lib/chef/resource/ifconfig.rb
|
598
|
+
- lib/chef/resource/csh.rb
|
599
|
+
- lib/chef/resource/group.rb
|
600
|
+
- lib/chef/certificate.rb
|
610
601
|
- lib/chef/search/query.rb
|
611
|
-
- lib/chef/
|
612
|
-
- lib/chef/
|
613
|
-
- lib/chef/
|
614
|
-
- lib/chef/
|
615
|
-
- lib/chef/
|
616
|
-
- lib/chef/
|
617
|
-
- lib/chef/
|
618
|
-
- lib/chef/
|
619
|
-
- lib/chef/
|
620
|
-
- lib/chef/
|
621
|
-
- lib/chef/
|
622
|
-
- lib/chef/
|
623
|
-
- lib/chef/
|
624
|
-
- lib/chef/
|
625
|
-
- lib/chef/
|
626
|
-
- lib/chef/
|
627
|
-
- lib/chef/
|
628
|
-
- lib/chef/
|
629
|
-
- lib/chef/
|
630
|
-
- lib/chef/
|
631
|
-
- lib/chef/
|
632
|
-
- lib/chef/version.rb
|
602
|
+
- lib/chef/mixin/convert_to_class_name.rb
|
603
|
+
- lib/chef/mixin/deep_merge.rb
|
604
|
+
- lib/chef/mixin/shell_out.rb
|
605
|
+
- lib/chef/mixin/checksum.rb
|
606
|
+
- lib/chef/mixin/create_path.rb
|
607
|
+
- lib/chef/mixin/template.rb
|
608
|
+
- lib/chef/mixin/command/windows.rb
|
609
|
+
- lib/chef/mixin/command/unix.rb
|
610
|
+
- lib/chef/mixin/from_file.rb
|
611
|
+
- lib/chef/mixin/recipe_definition_dsl_core.rb
|
612
|
+
- lib/chef/mixin/get_source_from_package.rb
|
613
|
+
- lib/chef/mixin/deprecation.rb
|
614
|
+
- lib/chef/mixin/language.rb
|
615
|
+
- lib/chef/mixin/xml_escape.rb
|
616
|
+
- lib/chef/mixin/language_include_recipe.rb
|
617
|
+
- lib/chef/mixin/check_helper.rb
|
618
|
+
- lib/chef/mixin/command.rb
|
619
|
+
- lib/chef/mixin/params_validate.rb
|
620
|
+
- lib/chef/mixin/language_include_attribute.rb
|
621
|
+
- lib/chef/json_compat.rb
|
622
|
+
- lib/chef/knife.rb
|
633
623
|
- lib/chef/version_class.rb
|
634
|
-
- lib/chef/version_constraint.rb
|
635
|
-
- lib/chef/webui_user.rb
|
636
624
|
- lib/chef.rb
|
637
|
-
- bin/chef-client
|
638
|
-
- bin/chef-solo
|
639
|
-
- bin/knife
|
640
|
-
- bin/shef
|
641
625
|
has_rdoc: true
|
642
626
|
homepage: http://wiki.opscode.com/display/chef
|
643
627
|
licenses: []
|
@@ -648,21 +632,21 @@ rdoc_options: []
|
|
648
632
|
require_paths:
|
649
633
|
- lib
|
650
634
|
required_ruby_version: !ruby/object:Gem::Requirement
|
651
|
-
none: false
|
652
635
|
requirements:
|
653
636
|
- - ">="
|
654
637
|
- !ruby/object:Gem::Version
|
655
638
|
version: "0"
|
639
|
+
version:
|
656
640
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
657
|
-
none: false
|
658
641
|
requirements:
|
659
|
-
- - "
|
642
|
+
- - ">"
|
660
643
|
- !ruby/object:Gem::Version
|
661
|
-
version:
|
644
|
+
version: 1.3.1
|
645
|
+
version:
|
662
646
|
requirements: []
|
663
647
|
|
664
648
|
rubyforge_project:
|
665
|
-
rubygems_version: 1.
|
649
|
+
rubygems_version: 1.3.5
|
666
650
|
signing_key:
|
667
651
|
specification_version: 3
|
668
652
|
summary: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
|