chef 10.26.0 → 10.28.0.rc.0
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/chef-expander.8.html +4 -4
- data/distro/common/html/chef-expanderctl.8.html +4 -4
- data/distro/common/html/chef-server-webui.8.html +4 -4
- data/distro/common/html/chef-server.8.html +4 -4
- data/distro/common/html/chef-solo.8.html +12 -18
- data/distro/common/html/chef-solr.8.html +4 -4
- data/distro/common/html/knife-bootstrap.1.html +4 -4
- data/distro/common/html/knife-client.1.html +4 -4
- data/distro/common/html/knife-configure.1.html +4 -4
- data/distro/common/html/knife-cookbook-site.1.html +4 -4
- data/distro/common/html/knife-cookbook.1.html +7 -10
- data/distro/common/html/knife-data-bag.1.html +7 -10
- data/distro/common/html/knife-environment.1.html +6 -8
- data/distro/common/html/knife-exec.1.html +4 -4
- data/distro/common/html/knife-index.1.html +4 -4
- data/distro/common/html/knife-node.1.html +4 -4
- data/distro/common/html/knife-role.1.html +4 -4
- data/distro/common/html/knife-search.1.html +4 -4
- data/distro/common/html/knife-ssh.1.html +4 -4
- data/distro/common/html/knife-status.1.html +4 -4
- data/distro/common/html/knife-tag.1.html +4 -4
- data/distro/common/html/knife.1.html +4 -4
- data/distro/common/html/shef.1.html +4 -4
- data/distro/common/man/man1/knife-bootstrap.1 +1 -1
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +1 -1
- data/distro/common/man/man1/knife-cookbook.1 +2 -15
- data/distro/common/man/man1/knife-data-bag.1 +2 -15
- data/distro/common/man/man1/knife-environment.1 +2 -12
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man1/shef.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +1 -1
- data/distro/common/man/man8/chef-expander.8 +1 -1
- data/distro/common/man/man8/chef-expanderctl.8 +1 -1
- data/distro/common/man/man8/chef-server-webui.8 +1 -1
- data/distro/common/man/man8/chef-server.8 +1 -1
- data/distro/common/man/man8/chef-solo.8 +4 -36
- data/distro/common/man/man8/chef-solr.8 +1 -1
- data/lib/chef/application/windows_service.rb +1 -1
- data/lib/chef/config.rb +1 -0
- data/lib/chef/cookbook/synchronizer.rb +8 -6
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/centos5-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/chef-full.erb +3 -3
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +2 -2
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/ubuntu12.04-gems.erb +2 -2
- data/lib/chef/knife/bootstrap/ubuntu12.10-gems.erb +2 -2
- data/lib/chef/knife/core/node_presenter.rb +1 -1
- data/lib/chef/mixin/params_validate.rb +19 -6
- data/lib/chef/provider/package/portage.rb +9 -4
- data/lib/chef/provider/package/rubygems.rb +41 -9
- data/lib/chef/provider/package/yum.rb +18 -12
- data/lib/chef/resource.rb +9 -7
- data/lib/chef/version.rb +1 -1
- data/spec/data/cookbooks/openldap/files/default/.dotfile +1 -0
- data/spec/data/cookbooks/openldap/files/default/.ssh/id_rsa +1 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/.a_dotdir/.a_dotfile_in_a_dotdir +1 -0
- data/spec/data/cookbooks/openldap/files/default/remotedir/remotesubdir/.a_dotfile +1 -0
- data/spec/data/knife-home/.chef/plugins/knife/example_home_subcommand.rb +0 -0
- data/spec/functional/knife/cookbook_delete_spec.rb +1 -1
- data/spec/unit/checksum/storage/filesystem_spec.rb +1 -1
- data/spec/unit/cookbook/synchronizer_spec.rb +49 -1
- data/spec/unit/mixin/params_validate_spec.rb +35 -0
- data/spec/unit/provider/env_spec.rb +2 -2
- data/spec/unit/provider/group_spec.rb +2 -2
- data/spec/unit/provider/package/portage_spec.rb +44 -0
- data/spec/unit/provider/package/rubygems_spec.rb +44 -1
- data/spec/unit/provider/package/yum_spec.rb +36 -39
- data/spec/unit/provider/service/arch_service_spec.rb +1 -1
- data/spec/unit/provider/service/freebsd_service_spec.rb +1 -1
- data/spec/unit/provider/service/init_service_spec.rb +1 -1
- data/spec/unit/provider/service/invokercd_service_spec.rb +1 -1
- data/spec/unit/provider/service/upstart_service_spec.rb +2 -2
- data/spec/unit/provider/user_spec.rb +1 -1
- metadata +1183 -1181
@@ -124,9 +124,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
124
124
|
|
125
125
|
<h2 id="AUTHOR">AUTHOR</h2>
|
126
126
|
|
127
|
-
<p>Chef was written by Adam Jacob <a href="&#
|
127
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
128
128
|
(http://www.opscode.com), with contributions from the community. This
|
129
|
-
manual page was written by Joshua Timberman <a href="mai&#
|
129
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
130
130
|
help2man. Permission is granted to copy, distribute and / or modify
|
131
131
|
this document under the terms of the Apache 2.0 License.</p>
|
132
132
|
|
@@ -135,8 +135,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
135
135
|
|
136
136
|
|
137
137
|
<ol class='man-decor man-foot man foot'>
|
138
|
-
<li class='tl'>Chef 10.
|
139
|
-
<li class='tc'>
|
138
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
139
|
+
<li class='tc'>August 2013</li>
|
140
140
|
<li class='tr'>chef-client(8)</li>
|
141
141
|
</ol>
|
142
142
|
|
@@ -143,9 +143,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
143
143
|
|
144
144
|
<h2 id="AUTHOR">AUTHOR</h2>
|
145
145
|
|
146
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
146
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
147
147
|
(http://www.opscode.com), with contributions from the community. This
|
148
|
-
manual page was created by Nuo Yan <a href="&#
|
148
|
+
manual page was created by Nuo Yan <a href="mailto:nuo@opscode.com" data-bare-link="true">nuo@opscode.com</a>. Permission is
|
149
149
|
granted to copy, distribute and / or modify this document under the
|
150
150
|
terms of the Apache 2.0 License.</p>
|
151
151
|
|
@@ -154,8 +154,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
154
154
|
|
155
155
|
|
156
156
|
<ol class='man-decor man-foot man foot'>
|
157
|
-
<li class='tl'>Chef 10.
|
158
|
-
<li class='tc'>
|
157
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
158
|
+
<li class='tc'>August 2013</li>
|
159
159
|
<li class='tr'>chef-expander(8)</li>
|
160
160
|
</ol>
|
161
161
|
|
@@ -125,9 +125,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
125
125
|
|
126
126
|
<h2 id="AUTHOR">AUTHOR</h2>
|
127
127
|
|
128
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
128
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
129
129
|
(http://www.opscode.com), with contributions from the community. This
|
130
|
-
manual page was created by Nuo Yan <a href="&#
|
130
|
+
manual page was created by Nuo Yan <a href="mailto:nuo@opscode.com" data-bare-link="true">nuo@opscode.com</a>. Permission is
|
131
131
|
granted to copy, distribute and / or modify this document under the
|
132
132
|
terms of the Apache 2.0 License.</p>
|
133
133
|
|
@@ -136,8 +136,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
136
136
|
|
137
137
|
|
138
138
|
<ol class='man-decor man-foot man foot'>
|
139
|
-
<li class='tl'>Chef 10.
|
140
|
-
<li class='tc'>
|
139
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
140
|
+
<li class='tc'>August 2013</li>
|
141
141
|
<li class='tr'>chef-expanderctl(8)</li>
|
142
142
|
</ol>
|
143
143
|
|
@@ -163,9 +163,9 @@ is located on the Chef wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
163
163
|
|
164
164
|
<h2 id="AUTHOR">AUTHOR</h2>
|
165
165
|
|
166
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
166
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
167
167
|
(http://www.opscode.com), with contributions from the community. This
|
168
|
-
manual page was written by Joshua Timberman <a href="&#
|
168
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
169
169
|
help2man for the Debian project (but may be used by others). Permission
|
170
170
|
is granted to copy, distribute and / or modify this document under the
|
171
171
|
terms of the Apache 2.0 License.</p>
|
@@ -175,8 +175,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
175
175
|
|
176
176
|
|
177
177
|
<ol class='man-decor man-foot man foot'>
|
178
|
-
<li class='tl'>Chef 10.
|
179
|
-
<li class='tc'>
|
178
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
179
|
+
<li class='tc'>August 2013</li>
|
180
180
|
<li class='tr'>chef-server-webui(8)</li>
|
181
181
|
</ol>
|
182
182
|
|
@@ -161,9 +161,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
161
161
|
|
162
162
|
<h2 id="AUTHOR">AUTHOR</h2>
|
163
163
|
|
164
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
164
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
165
165
|
(http://www.opscode.com), with contributions from the community. This
|
166
|
-
manual page was written by Joshua Timberman <a href="&#
|
166
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
167
167
|
help2man. Permission is granted to copy, distribute and / or modify
|
168
168
|
this document under the terms of the Apache 2.0 License.</p>
|
169
169
|
|
@@ -172,8 +172,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
172
172
|
|
173
173
|
|
174
174
|
<ol class='man-decor man-foot man foot'>
|
175
|
-
<li class='tl'>Chef 10.
|
176
|
-
<li class='tc'>
|
175
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
176
|
+
<li class='tc'>August 2013</li>
|
177
177
|
<li class='tr'>chef-server(8)</li>
|
178
178
|
</ol>
|
179
179
|
|
@@ -109,11 +109,9 @@ To do this, the complete cookbook needs to be present on disk.</p>
|
|
109
109
|
This configuration file has two required variables: file_cache_path and
|
110
110
|
cookbook_path.</p>
|
111
111
|
|
112
|
-
<p>For example
|
113
|
-
|
114
|
-
|
115
|
-
cookbook_path "/var/chef-solo/cookbooks"
|
116
|
-
</code></pre>
|
112
|
+
<p>For example:
|
113
|
+
file_cache_path "/var/chef-solo"
|
114
|
+
cookbook_path "/var/chef-solo/cookbooks"</p>
|
117
115
|
|
118
116
|
<p>For your own systems, you can change this to reflect any directory you like,
|
119
117
|
but you'll need to specify absolute paths and the cookbook_path directory
|
@@ -122,11 +120,9 @@ should be a subdirectory of the file_cache_path.</p>
|
|
122
120
|
<p>You can also specify cookbook_path as an array, passing multiple locations
|
123
121
|
to search for cookbooks.</p>
|
124
122
|
|
125
|
-
<p>For example
|
126
|
-
|
127
|
-
|
128
|
-
cookbook_path ["/var/chef-solo/cookbooks", "/var/chef-solo/site-cookbooks"]
|
129
|
-
</code></pre>
|
123
|
+
<p>For example:
|
124
|
+
file_cache_path "/var/chef-solo"
|
125
|
+
cookbook_path ["/var/chef-solo/cookbooks", "/var/chef-solo/site-cookbooks"]</p>
|
130
126
|
|
131
127
|
<p>Note that earlier entries are now overridden by later ones.</p>
|
132
128
|
|
@@ -154,10 +150,8 @@ attributes and use the run_list from the JSON file specified.</p>
|
|
154
150
|
<p>You can use -c to specify the path to the configuration file (if you don't want
|
155
151
|
chef-solo to use the default). You can also specify -r for a cookbook tarball.</p>
|
156
152
|
|
157
|
-
<p>For example
|
158
|
-
|
159
|
-
<pre><code>chef-solo -c ~/solo.rb -j ~/node.json -r http://www.example.com/chef-solo.tar.gz
|
160
|
-
</code></pre>
|
153
|
+
<p>For example:
|
154
|
+
chef-solo -c ~/solo.rb -j ~/node.json -r http://www.example.com/chef-solo.tar.gz</p>
|
161
155
|
|
162
156
|
<p>In the above case, chef-solo would extract the tarball to your specified
|
163
157
|
cookbook_path, use ~/solo.rb as the configuration file, and apply attributes
|
@@ -170,9 +164,9 @@ http://wiki.opscode.com/display/chef/Home.</p>
|
|
170
164
|
|
171
165
|
<h2 id="AUTHOR">AUTHOR</h2>
|
172
166
|
|
173
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
167
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
174
168
|
(http://www.opscode.com), with contributions from the community. This
|
175
|
-
manual page was written by Joshua Timberman <a href="&#
|
169
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
176
170
|
help2man. Permission is granted to copy, distribute and / or modify
|
177
171
|
this document under the terms of the Apache 2.0 License.</p>
|
178
172
|
|
@@ -181,8 +175,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
181
175
|
|
182
176
|
|
183
177
|
<ol class='man-decor man-foot man foot'>
|
184
|
-
<li class='tl'>Chef 10.
|
185
|
-
<li class='tc'>
|
178
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
179
|
+
<li class='tc'>August 2013</li>
|
186
180
|
<li class='tr'>chef-solo(8)</li>
|
187
181
|
</ol>
|
188
182
|
|
@@ -144,9 +144,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
144
144
|
|
145
145
|
<h2 id="AUTHOR">AUTHOR</h2>
|
146
146
|
|
147
|
-
<p>Chef was written by Adam Jacob <a href="m&#
|
147
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
148
148
|
(http://www.opscode.com), with contributions from the community. This
|
149
|
-
manual page was written by Joshua Timberman <a href="&#
|
149
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
150
150
|
help2man. Permission is granted to copy, distribute and / or modify
|
151
151
|
this document under the terms of the Apache 2.0 License.</p>
|
152
152
|
|
@@ -155,8 +155,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
155
155
|
|
156
156
|
|
157
157
|
<ol class='man-decor man-foot man foot'>
|
158
|
-
<li class='tl'>Chef 10.
|
159
|
-
<li class='tc'>
|
158
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
159
|
+
<li class='tc'>August 2013</li>
|
160
160
|
<li class='tr'>chef-solr(8)</li>
|
161
161
|
</ol>
|
162
162
|
|
@@ -218,11 +218,11 @@ to other users via the process list using tools such as <span class="man-ref">ps
|
|
218
218
|
|
219
219
|
<h2 id="AUTHOR">AUTHOR</h2>
|
220
220
|
|
221
|
-
<p> Chef was written by Adam Jacob <a href="ma&#
|
221
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
222
222
|
|
223
223
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
224
224
|
|
225
|
-
<p> This manual page was written by Joshua Timberman <a href="m&#
|
225
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
226
226
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
227
227
|
|
228
228
|
<h2 id="CHEF">CHEF</h2>
|
@@ -231,8 +231,8 @@ to other users via the process list using tools such as <span class="man-ref">ps
|
|
231
231
|
|
232
232
|
|
233
233
|
<ol class='man-decor man-foot man foot'>
|
234
|
-
<li class='tl'>Chef 10.
|
235
|
-
<li class='tc'>
|
234
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
235
|
+
<li class='tc'>August 2013</li>
|
236
236
|
<li class='tr'>knife-bootstrap(1)</li>
|
237
237
|
</ol>
|
238
238
|
|
@@ -196,11 +196,11 @@ setting up a host for management with Chef.</p>
|
|
196
196
|
|
197
197
|
<h2 id="AUTHOR">AUTHOR</h2>
|
198
198
|
|
199
|
-
<p> Chef was written by Adam Jacob <a href="ma&#
|
199
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
200
200
|
|
201
201
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
202
202
|
|
203
|
-
<p> This manual page was written by Joshua Timberman <a href="ma&#
|
203
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
204
204
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
205
205
|
|
206
206
|
<h2 id="CHEF">CHEF</h2>
|
@@ -209,8 +209,8 @@ setting up a host for management with Chef.</p>
|
|
209
209
|
|
210
210
|
|
211
211
|
<ol class='man-decor man-foot man foot'>
|
212
|
-
<li class='tl'>Chef 10.
|
213
|
-
<li class='tc'>
|
212
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
213
|
+
<li class='tc'>August 2013</li>
|
214
214
|
<li class='tr'>knife-client(1)</li>
|
215
215
|
</ol>
|
216
216
|
|
@@ -147,11 +147,11 @@ may need to modify that setting after copying to a remote host.</p></li>
|
|
147
147
|
|
148
148
|
<h2 id="AUTHOR">AUTHOR</h2>
|
149
149
|
|
150
|
-
<p> Chef was written by Adam Jacob <a href="&#
|
150
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
151
151
|
|
152
152
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
153
153
|
|
154
|
-
<p> This manual page was written by Joshua Timberman <a href="ma&#
|
154
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
155
155
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
156
156
|
|
157
157
|
<h2 id="CHEF">CHEF</h2>
|
@@ -160,8 +160,8 @@ may need to modify that setting after copying to a remote host.</p></li>
|
|
160
160
|
|
161
161
|
|
162
162
|
<ol class='man-decor man-foot man foot'>
|
163
|
-
<li class='tl'>Chef 10.
|
164
|
-
<li class='tc'>
|
163
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
164
|
+
<li class='tc'>August 2013</li>
|
165
165
|
<li class='tr'>knife-configure(1)</li>
|
166
166
|
</ol>
|
167
167
|
|
@@ -218,11 +218,11 @@ configuration file.</p>
|
|
218
218
|
|
219
219
|
<h2 id="AUTHOR">AUTHOR</h2>
|
220
220
|
|
221
|
-
<p> Chef was written by Adam Jacob <a href="&#
|
221
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
222
222
|
|
223
223
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
224
224
|
|
225
|
-
<p> This manual page was written by Joshua Timberman <a href="ma&#
|
225
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
226
226
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
227
227
|
|
228
228
|
<h2 id="CHEF">CHEF</h2>
|
@@ -231,8 +231,8 @@ configuration file.</p>
|
|
231
231
|
|
232
232
|
|
233
233
|
<ol class='man-decor man-foot man foot'>
|
234
|
-
<li class='tl'>Chef 10.
|
235
|
-
<li class='tc'>
|
234
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
235
|
+
<li class='tc'>August 2013</li>
|
236
236
|
<li class='tr'>knife-cookbook-site(1)</li>
|
237
237
|
</ol>
|
238
238
|
|
@@ -162,12 +162,9 @@ option.</dd>
|
|
162
162
|
to the Chef Server. Only files that don't yet exist on the server will
|
163
163
|
be uploaded.</p>
|
164
164
|
|
165
|
-
<p>As the command parses the name args as 1..n cookbook names
|
166
|
-
|
167
|
-
|
168
|
-
</code></pre>
|
169
|
-
|
170
|
-
<p>works for one to many cookbooks.</p>
|
165
|
+
<p>As the command parses the name args as 1..n cookbook names:
|
166
|
+
<code>knife cookbook upload COOKBOOK COOKBOOK ...</code>
|
167
|
+
works for one to many cookbooks.</p>
|
171
168
|
|
172
169
|
<h2 id="DOWNLOAD">DOWNLOAD</h2>
|
173
170
|
|
@@ -361,11 +358,11 @@ cookbook.</p>
|
|
361
358
|
|
362
359
|
<h2 id="AUTHOR">AUTHOR</h2>
|
363
360
|
|
364
|
-
<p> Chef was written by Adam Jacob <a href="mail&#
|
361
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
365
362
|
|
366
363
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
367
364
|
|
368
|
-
<p> This manual page was written by Joshua Timberman <a href="mail&#
|
365
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
369
366
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
370
367
|
|
371
368
|
<h2 id="CHEF">CHEF</h2>
|
@@ -374,8 +371,8 @@ cookbook.</p>
|
|
374
371
|
|
375
372
|
|
376
373
|
<ol class='man-decor man-foot man foot'>
|
377
|
-
<li class='tl'>Chef 10.
|
378
|
-
<li class='tc'>
|
374
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
375
|
+
<li class='tc'>August 2013</li>
|
379
376
|
<li class='tr'>knife-cookbook(1)</li>
|
380
377
|
</ol>
|
381
378
|
|
@@ -197,12 +197,9 @@ passwords, API keys, etc.</p>
|
|
197
197
|
|
198
198
|
<p><strong>CAVEATS:</strong> Keys are not encrypted; only values are encrypted. The "id"
|
199
199
|
of a Data Bag Item is not encrypted, since it is used by Chef Server to
|
200
|
-
store the item in its database. For example, given the following data bag item
|
201
|
-
|
202
|
-
|
203
|
-
</code></pre>
|
204
|
-
|
205
|
-
<p>The key "secret_password" will be visible to an evesdropper, but the
|
200
|
+
store the item in its database. For example, given the following data bag item:
|
201
|
+
{"id": "important_passwords", "secret_password": "opensesame"}
|
202
|
+
The key "secret_password" will be visible to an evesdropper, but the
|
206
203
|
value "opensesame" will be protected. Both the key "id" and its value
|
207
204
|
"important_passwords" will be visible to an evesdropper.</p>
|
208
205
|
|
@@ -215,11 +212,11 @@ encryption keys.</p>
|
|
215
212
|
|
216
213
|
<h2 id="AUTHOR">AUTHOR</h2>
|
217
214
|
|
218
|
-
<p> Chef was written by Adam Jacob <a href="mail&#
|
215
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
219
216
|
|
220
217
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
221
218
|
|
222
|
-
<p> This manual page was written by Joshua Timberman <a href="mail&#
|
219
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
223
220
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
224
221
|
|
225
222
|
<h2 id="CHEF">CHEF</h2>
|
@@ -228,8 +225,8 @@ encryption keys.</p>
|
|
228
225
|
|
229
226
|
|
230
227
|
<ol class='man-decor man-foot man foot'>
|
231
|
-
<li class='tl'>Chef 10.
|
232
|
-
<li class='tc'>
|
228
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
229
|
+
<li class='tc'>August 2013</li>
|
233
230
|
<li class='tr'>knife-data-bag(1)</li>
|
234
231
|
</ol>
|
235
232
|
|
@@ -135,10 +135,8 @@ exits.</p>
|
|
135
135
|
<h2 id="LIST">LIST</h2>
|
136
136
|
|
137
137
|
<p><strong>knife environment list</strong> <em>(options)</em>
|
138
|
-
* <code>-w</code>, <code>--with-uri</code
|
139
|
-
|
140
|
-
<pre><code>Show the resource URI for each environment
|
141
|
-
</code></pre>
|
138
|
+
* <code>-w</code>, <code>--with-uri</code>:
|
139
|
+
Show the resource URI for each environment</p>
|
142
140
|
|
143
141
|
<h2 id="SHOW">SHOW</h2>
|
144
142
|
|
@@ -244,11 +242,11 @@ override_attributes "aws_s3_bucket" => "production"
|
|
244
242
|
|
245
243
|
<h2 id="AUTHOR">AUTHOR</h2>
|
246
244
|
|
247
|
-
<p> Chef was written by Adam Jacob <a href="&#
|
245
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
248
246
|
|
249
247
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
250
248
|
|
251
|
-
<p> This manual page was written by Daniel DeLeo <a href="&#
|
249
|
+
<p> This manual page was written by Daniel DeLeo <a href="mailto:dan@opscode.com" data-bare-link="true">dan@opscode.com</a>.
|
252
250
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
253
251
|
|
254
252
|
<h2 id="CHEF">CHEF</h2>
|
@@ -257,8 +255,8 @@ override_attributes "aws_s3_bucket" => "production"
|
|
257
255
|
|
258
256
|
|
259
257
|
<ol class='man-decor man-foot man foot'>
|
260
|
-
<li class='tl'>Chef 10.
|
261
|
-
<li class='tc'>
|
258
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
259
|
+
<li class='tc'>August 2013</li>
|
262
260
|
<li class='tr'>knife-environment(1)</li>
|
263
261
|
</ol>
|
264
262
|
|
@@ -111,11 +111,11 @@ commands available.</p>
|
|
111
111
|
|
112
112
|
<h2 id="AUTHOR">AUTHOR</h2>
|
113
113
|
|
114
|
-
<p> Chef was written by Adam Jacob <a href="&#
|
114
|
+
<p> Chef was written by Adam Jacob <a href="mailto:adam@opscode.com" data-bare-link="true">adam@opscode.com</a> with many contributions from the community.</p>
|
115
115
|
|
116
116
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
117
117
|
|
118
|
-
<p> This manual page was written by Joshua Timberman <a href="&#
|
118
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
119
119
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
120
120
|
|
121
121
|
<h2 id="CHEF">CHEF</h2>
|
@@ -124,8 +124,8 @@ commands available.</p>
|
|
124
124
|
|
125
125
|
|
126
126
|
<ol class='man-decor man-foot man foot'>
|
127
|
-
<li class='tl'>Chef 10.
|
128
|
-
<li class='tc'>
|
127
|
+
<li class='tl'>Chef 10.28.0.rc.0</li>
|
128
|
+
<li class='tc'>August 2013</li>
|
129
129
|
<li class='tr'>knife-exec(1)</li>
|
130
130
|
</ol>
|
131
131
|
|