chef 10.14.0.beta.3 → 10.14.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 -6
- 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 +4 -4
- 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 +5 -5
- data/distro/common/html/knife-cookbook-site.1.html +7 -7
- data/distro/common/html/knife-cookbook.1.html +4 -4
- data/distro/common/html/knife-data-bag.1.html +4 -4
- data/distro/common/html/knife-environment.1.html +4 -4
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +5 -5
- data/distro/common/man/man1/shef.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +1 -5
- data/distro/common/man/man8/chef-expander.8 +1 -1
- data/distro/common/man/man8/chef-expanderctl.8 +1 -1
- data/distro/common/man/man8/chef-server-webui.8 +1 -1
- data/distro/common/man/man8/chef-server.8 +1 -1
- data/distro/common/man/man8/chef-solo.8 +1 -1
- data/distro/common/man/man8/chef-solr.8 +1 -1
- data/distro/common/markdown/man1/knife.mkd +2 -2
- data/distro/common/markdown/man8/chef-client.mkd +0 -3
- data/lib/chef/client.rb +13 -3
- data/lib/chef/config.rb +29 -0
- data/lib/chef/environment.rb +5 -2
- data/lib/chef/file_access_control/unix.rb +3 -3
- data/lib/chef/knife.rb +11 -5
- data/lib/chef/knife/bootstrap.rb +9 -5
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +1 -1
- data/lib/chef/knife/bootstrap/centos5-gems.erb +1 -1
- data/lib/chef/knife/bootstrap/chef-full.erb +1 -1
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +1 -1
- data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +1 -1
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +1 -1
- data/lib/chef/knife/bootstrap/ubuntu12.04-gems.erb +1 -1
- data/lib/chef/knife/cookbook_create.rb +24 -1
- data/lib/chef/knife/ssh.rb +14 -2
- data/lib/chef/platform.rb +22 -2
- data/lib/chef/provider/file.rb +9 -3
- data/lib/chef/provider/group/usermod.rb +7 -4
- data/lib/chef/provider/mdadm.rb +3 -3
- data/lib/chef/provider/package/ips.rb +101 -0
- data/lib/chef/provider/package/solaris.rb +21 -12
- data/lib/chef/provider/service/solaris.rb +0 -3
- data/lib/chef/provider/user/dscl.rb +1 -1
- data/lib/chef/providers.rb +1 -0
- data/lib/chef/resource/ips_package.rb +42 -0
- data/lib/chef/resource/package.rb +6 -7
- data/lib/chef/resources.rb +1 -0
- data/lib/chef/rest/auth_credentials.rb +4 -3
- data/lib/chef/scan_access_control.rb +3 -9
- data/lib/chef/shef/ext.rb +22 -0
- data/lib/chef/version.rb +1 -1
- data/spec/functional/knife/cookbook_delete_spec.rb +5 -2
- data/spec/functional/knife/exec_spec.rb +5 -2
- data/spec/functional/knife/ssh_spec.rb +4 -2
- data/spec/functional/resource/link_spec.rb +4 -4
- data/spec/functional/resource/remote_file_spec.rb +17 -1
- data/spec/support/platform_helpers.rb +8 -0
- data/spec/support/shared/functional/securable_resource.rb +2 -2
- data/spec/tiny_server.rb +5 -1
- data/spec/unit/client_spec.rb +24 -0
- data/spec/unit/environment_spec.rb +26 -0
- data/spec/unit/knife/bootstrap_spec.rb +34 -11
- data/spec/unit/knife/config_file_selection_spec.rb +2 -2
- data/spec/unit/knife/configure_spec.rb +6 -0
- data/spec/unit/knife/cookbook_create_spec.rb +20 -0
- data/spec/unit/knife/ssh_spec.rb +145 -0
- data/spec/unit/mixin/command_spec.rb +8 -4
- data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +2 -1
- data/spec/unit/mixin/securable_spec.rb +2 -2
- data/spec/unit/provider/file_spec.rb +6 -4
- data/spec/unit/provider/group/usermod_spec.rb +6 -1
- data/spec/unit/provider/link_spec.rb +4 -1
- data/spec/unit/provider/mdadm_spec.rb +10 -13
- data/spec/unit/provider/package/ips_spec.rb +210 -0
- data/spec/unit/provider/package/solaris_spec.rb +6 -4
- data/spec/unit/provider/subversion_spec.rb +2 -2
- data/spec/unit/provider/user/dscl_spec.rb +15 -0
- data/spec/unit/resource/ips_package_spec.rb +43 -0
- data/spec/unit/rest/auth_credentials_spec.rb +36 -14
- data/spec/unit/scan_access_control_spec.rb +20 -0
- metadata +13 -8
@@ -92,8 +92,6 @@
|
|
92
92
|
<dt><code>-l</code>, <code>--log_level LEVEL</code></dt><dd>Set the log level (debug, info, warn, error, fatal)</dd>
|
93
93
|
<dt><code>-L</code>, <code>--logfile LOGLOCATION</code></dt><dd>Set the log file location, defaults to STDOUT - recommended for
|
94
94
|
daemonizing</dd>
|
95
|
-
<dt><code>-V</code>, <code>--verbose</code></dt><dd>Ensures logging goes to STDOUT as well as to other configured
|
96
|
-
log location(s).</dd>
|
97
95
|
<dt><code>-N</code>, <code>--node-name NODE_NAME</code></dt><dd>The node name for this client</dd>
|
98
96
|
<dt><code>-o</code>, <code>--override-runlist</code></dt><dd>Replace current run list with specified items</dd>
|
99
97
|
<dt><code>-K</code>, <code>--validation_key KEY_FILE</code></dt><dd>Set the validation key file location, used for registering new clients</dd>
|
@@ -126,9 +124,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
|
126
124
|
|
127
125
|
<h2 id="AUTHOR">AUTHOR</h2>
|
128
126
|
|
129
|
-
<p>Chef was written by Adam Jacob <a href="&#
|
127
|
+
<p>Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@ospcode.com">adam@ospcode.com</a> of Opscode
|
130
128
|
(http://www.opscode.com), with contributions from the community. This
|
131
|
-
manual page was written by Joshua Timberman <a href="&#
|
129
|
+
manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">joshua@opscode.com</a> with
|
132
130
|
help2man. Permission is granted to copy, distribute and / or modify
|
133
131
|
this document under the terms of the Apache 2.0 License.</p>
|
134
132
|
|
@@ -137,8 +135,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
137
135
|
|
138
136
|
|
139
137
|
<ol class='man-decor man-foot man foot'>
|
140
|
-
<li class='tl'>Chef 10.14.0.
|
141
|
-
<li class='tc'>
|
138
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
139
|
+
<li class='tc'>August 2012</li>
|
142
140
|
<li class='tr'>chef-client(8)</li>
|
143
141
|
</ol>
|
144
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="&#
|
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.14.0.
|
158
|
-
<li class='tc'>
|
157
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
158
|
+
<li class='tc'>August 2012</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="&#
|
128
|
+
<p>Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@ospcode.com">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 data-bare-link="true" href="mailto:nuo@opscode.com">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.14.0.
|
140
|
-
<li class='tc'>
|
139
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
140
|
+
<li class='tc'>August 2012</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
|
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
|
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.14.0.
|
179
|
-
<li class='tc'>
|
178
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
179
|
+
<li class='tc'>August 2012</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="&#
|
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.14.0.
|
176
|
-
<li class='tc'>
|
175
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
176
|
+
<li class='tc'>August 2012</li>
|
177
177
|
<li class='tr'>chef-server(8)</li>
|
178
178
|
</ol>
|
179
179
|
|
@@ -170,9 +170,9 @@ http://wiki.opscode.com/display/chef/Home.</p>
|
|
170
170
|
|
171
171
|
<h2 id="AUTHOR">AUTHOR</h2>
|
172
172
|
|
173
|
-
<p>Chef was written by Adam Jacob <a
|
173
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
174
174
|
(http://www.opscode.com), with contributions from the community. This
|
175
|
-
manual page was written by Joshua Timberman <a
|
175
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
176
176
|
help2man. Permission is granted to copy, distribute and / or modify
|
177
177
|
this document under the terms of the Apache 2.0 License.</p>
|
178
178
|
|
@@ -181,8 +181,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
181
181
|
|
182
182
|
|
183
183
|
<ol class='man-decor man-foot man foot'>
|
184
|
-
<li class='tl'>Chef 10.14.0.
|
185
|
-
<li class='tc'>
|
184
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
185
|
+
<li class='tc'>August 2012</li>
|
186
186
|
<li class='tr'>chef-solo(8)</li>
|
187
187
|
</ol>
|
188
188
|
|
@@ -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="mailto&#
|
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.14.0.
|
159
|
-
<li class='tc'>
|
158
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
159
|
+
<li class='tc'>August 2012</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 data-bare-link="true" href="mail&#
|
221
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">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 data-bare-link="true" href="&#
|
225
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">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.14.0.
|
235
|
-
<li class='tc'>
|
234
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
235
|
+
<li class='tc'>August 2012</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="mai&#
|
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="&#
|
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.14.0.
|
213
|
-
<li class='tc'>
|
212
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
213
|
+
<li class='tc'>August 2012</li>
|
214
214
|
<li class='tr'>knife-client(1)</li>
|
215
215
|
</ol>
|
216
216
|
|
@@ -147,21 +147,21 @@ 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="mai&#
|
150
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">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="&#
|
154
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">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>
|
158
158
|
|
159
|
-
<p> Knife is distributed with Chef. <a href="http://wiki.opscode.com/display/chef/Home"
|
159
|
+
<p> Knife is distributed with Chef. <a data-bare-link="true" href="http://wiki.opscode.com/display/chef/Home">http://wiki.opscode.com/display/chef/Home</a></p>
|
160
160
|
|
161
161
|
|
162
162
|
<ol class='man-decor man-foot man foot'>
|
163
|
-
<li class='tl'>Chef 10.14.0.
|
164
|
-
<li class='tc'>
|
163
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
164
|
+
<li class='tc'>August 2012</li>
|
165
165
|
<li class='tr'>knife-configure(1)</li>
|
166
166
|
</ol>
|
167
167
|
|
@@ -192,7 +192,7 @@ configuration file.</p>
|
|
192
192
|
|
193
193
|
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
194
194
|
|
195
|
-
<p>The cookbook site, <a href="http://community.opscode.com/"
|
195
|
+
<p>The cookbook site, <a data-bare-link="true" href="http://community.opscode.com/">http://community.opscode.com/</a>, is a cookbook
|
196
196
|
distribution service operated by Opscode. This service provides users
|
197
197
|
with a central location to publish cookbooks for sharing with other
|
198
198
|
community members.</p>
|
@@ -214,25 +214,25 @@ configuration file.</p>
|
|
214
214
|
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
215
215
|
|
216
216
|
<p> <strong><span class="man-ref">knife-cookbook<span class="s">(1)</span></span></strong>
|
217
|
-
<a href="http://community.opscode.com/cookbooks"
|
217
|
+
<a data-bare-link="true" href="http://community.opscode.com/cookbooks">http://community.opscode.com/cookbooks</a></p>
|
218
218
|
|
219
219
|
<h2 id="AUTHOR">AUTHOR</h2>
|
220
220
|
|
221
|
-
<p> Chef was written by Adam Jacob <a href="m&#
|
221
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">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="mail&#
|
225
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">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>
|
229
229
|
|
230
|
-
<p> Knife is distributed with Chef. <a href="http://wiki.opscode.com/display/chef/Home"
|
230
|
+
<p> Knife is distributed with Chef. <a data-bare-link="true" href="http://wiki.opscode.com/display/chef/Home">http://wiki.opscode.com/display/chef/Home</a></p>
|
231
231
|
|
232
232
|
|
233
233
|
<ol class='man-decor man-foot man foot'>
|
234
|
-
<li class='tl'>Chef 10.14.0.
|
235
|
-
<li class='tc'>
|
234
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
235
|
+
<li class='tc'>August 2012</li>
|
236
236
|
<li class='tr'>knife-cookbook-site(1)</li>
|
237
237
|
</ol>
|
238
238
|
|
@@ -361,11 +361,11 @@ cookbook.</p>
|
|
361
361
|
|
362
362
|
<h2 id="AUTHOR">AUTHOR</h2>
|
363
363
|
|
364
|
-
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="m&#
|
364
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">adam@opscode.com</a> with many contributions from the community.</p>
|
365
365
|
|
366
366
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
367
367
|
|
368
|
-
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="&#
|
368
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">joshua@opscode.com</a>.
|
369
369
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
370
370
|
|
371
371
|
<h2 id="CHEF">CHEF</h2>
|
@@ -374,8 +374,8 @@ cookbook.</p>
|
|
374
374
|
|
375
375
|
|
376
376
|
<ol class='man-decor man-foot man foot'>
|
377
|
-
<li class='tl'>Chef 10.14.0.
|
378
|
-
<li class='tc'>
|
377
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
378
|
+
<li class='tc'>August 2012</li>
|
379
379
|
<li class='tr'>knife-cookbook(1)</li>
|
380
380
|
</ol>
|
381
381
|
|
@@ -215,11 +215,11 @@ encryption keys.</p>
|
|
215
215
|
|
216
216
|
<h2 id="AUTHOR">AUTHOR</h2>
|
217
217
|
|
218
|
-
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="&#
|
218
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">adam@opscode.com</a> with many contributions from the community.</p>
|
219
219
|
|
220
220
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
221
221
|
|
222
|
-
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="&#
|
222
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">joshua@opscode.com</a>.
|
223
223
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
224
224
|
|
225
225
|
<h2 id="CHEF">CHEF</h2>
|
@@ -228,8 +228,8 @@ encryption keys.</p>
|
|
228
228
|
|
229
229
|
|
230
230
|
<ol class='man-decor man-foot man foot'>
|
231
|
-
<li class='tl'>Chef 10.14.0.
|
232
|
-
<li class='tc'>
|
231
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
232
|
+
<li class='tc'>August 2012</li>
|
233
233
|
<li class='tr'>knife-data-bag(1)</li>
|
234
234
|
</ol>
|
235
235
|
|
@@ -244,11 +244,11 @@ override_attributes "aws_s3_bucket" => "production"
|
|
244
244
|
|
245
245
|
<h2 id="AUTHOR">AUTHOR</h2>
|
246
246
|
|
247
|
-
<p> Chef was written by Adam Jacob <a href="m&#
|
247
|
+
<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
248
|
|
249
249
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
250
250
|
|
251
|
-
<p> This manual page was written by Daniel DeLeo <a href="&#
|
251
|
+
<p> This manual page was written by Daniel DeLeo <a href="mailto:dan@opscode.com" data-bare-link="true">dan@opscode.com</a>.
|
252
252
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
253
253
|
|
254
254
|
<h2 id="CHEF">CHEF</h2>
|
@@ -257,8 +257,8 @@ override_attributes "aws_s3_bucket" => "production"
|
|
257
257
|
|
258
258
|
|
259
259
|
<ol class='man-decor man-foot man foot'>
|
260
|
-
<li class='tl'>Chef 10.14.0.
|
261
|
-
<li class='tc'>
|
260
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
261
|
+
<li class='tc'>August 2012</li>
|
262
262
|
<li class='tr'>knife-environment(1)</li>
|
263
263
|
</ol>
|
264
264
|
|
@@ -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 data-bare-link="true" href="m&#
|
114
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">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 data-bare-link="true" href="&#
|
118
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">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.14.0.
|
128
|
-
<li class='tc'>
|
127
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
128
|
+
<li class='tc'>August 2012</li>
|
129
129
|
<li class='tr'>knife-exec(1)</li>
|
130
130
|
</ol>
|
131
131
|
|
@@ -102,11 +102,11 @@ time for all objects to be indexed and available for search.</p>
|
|
102
102
|
|
103
103
|
<h2 id="AUTHOR">AUTHOR</h2>
|
104
104
|
|
105
|
-
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="m&#
|
105
|
+
<p> Chef was written by Adam Jacob <a data-bare-link="true" href="mailto:adam@opscode.com">adam@opscode.com</a> with many contributions from the community.</p>
|
106
106
|
|
107
107
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
108
108
|
|
109
|
-
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="&#
|
109
|
+
<p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="mailto:joshua@opscode.com">joshua@opscode.com</a>.
|
110
110
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
111
111
|
|
112
112
|
<h2 id="CHEF">CHEF</h2>
|
@@ -115,8 +115,8 @@ time for all objects to be indexed and available for search.</p>
|
|
115
115
|
|
116
116
|
|
117
117
|
<ol class='man-decor man-foot man foot'>
|
118
|
-
<li class='tl'>Chef 10.14.0.
|
119
|
-
<li class='tc'>
|
118
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
119
|
+
<li class='tc'>August 2012</li>
|
120
120
|
<li class='tr'>knife-index(1)</li>
|
121
121
|
</ol>
|
122
122
|
|
@@ -227,21 +227,21 @@ run list, the correct syntax is "role[ROLE_NAME]"</p>
|
|
227
227
|
|
228
228
|
<h2 id="AUTHOR">AUTHOR</h2>
|
229
229
|
|
230
|
-
<p> Chef was written by Adam Jacob <a
|
230
|
+
<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>
|
231
231
|
|
232
232
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
233
233
|
|
234
|
-
<p> This manual page was written by Joshua Timberman <a
|
234
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
235
235
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
236
236
|
|
237
237
|
<h2 id="CHEF">CHEF</h2>
|
238
238
|
|
239
|
-
<p> Knife is distributed with Chef. <a
|
239
|
+
<p> Knife is distributed with Chef. <a href="http://wiki.opscode.com/display/chef/Home" data-bare-link="true">http://wiki.opscode.com/display/chef/Home</a></p>
|
240
240
|
|
241
241
|
|
242
242
|
<ol class='man-decor man-foot man foot'>
|
243
|
-
<li class='tl'>Chef 10.14.0.
|
244
|
-
<li class='tc'>
|
243
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
244
|
+
<li class='tc'>August 2012</li>
|
245
245
|
<li class='tr'>knife-node(1)</li>
|
246
246
|
</ol>
|
247
247
|
|
@@ -177,11 +177,11 @@ run_list.</p>
|
|
177
177
|
|
178
178
|
<h2 id="AUTHOR">AUTHOR</h2>
|
179
179
|
|
180
|
-
<p> Chef was written by Adam Jacob <a href="m&#
|
180
|
+
<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>
|
181
181
|
|
182
182
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
183
183
|
|
184
|
-
<p> This manual page was written by Joshua Timberman <a href="&#
|
184
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
185
185
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
186
186
|
|
187
187
|
<h2 id="CHEF">CHEF</h2>
|
@@ -190,8 +190,8 @@ run_list.</p>
|
|
190
190
|
|
191
191
|
|
192
192
|
<ol class='man-decor man-foot man foot'>
|
193
|
-
<li class='tl'>Chef 10.14.0.
|
194
|
-
<li class='tc'>
|
193
|
+
<li class='tl'>Chef 10.14.0.rc.0</li>
|
194
|
+
<li class='tc'>August 2012</li>
|
195
195
|
<li class='tr'>knife-role(1)</li>
|
196
196
|
</ol>
|
197
197
|
|