chef 0.10.0.beta.10 → 0.10.0.qs.0
Sign up to get free protection for your applications and to get access to all the features.
- data/distro/arch/etc/conf.d/{chef-solr-indexer.conf → chef-expander.conf} +2 -2
- data/distro/arch/etc/rc.d/{chef-solr-indexer → chef-expander} +4 -4
- data/distro/common/html/chef-client.8.html +1 -1
- data/distro/common/html/{chef-expander-cluster.8.html → chef-expander.8.html} +11 -11
- data/distro/common/html/chef-expanderctl.8.html +1 -1
- data/distro/common/html/chef-server-webui.8.html +1 -1
- data/distro/common/html/chef-server.8.html +1 -1
- data/distro/common/html/chef-solo.8.html +1 -1
- data/distro/common/html/chef-solr.8.html +1 -1
- data/distro/common/html/knife-bootstrap.1.html +1 -1
- data/distro/common/html/knife-client.1.html +1 -1
- data/distro/common/html/knife-configure.1.html +1 -1
- data/distro/common/html/knife-cookbook-site.1.html +4 -3
- data/distro/common/html/knife-cookbook.1.html +1 -1
- data/distro/common/html/knife-data-bag.1.html +1 -1
- data/distro/common/html/knife-environment.1.html +1 -1
- data/distro/common/html/knife-exec.1.html +1 -1
- data/distro/common/html/knife-index.1.html +1 -1
- data/distro/common/html/knife-node.1.html +4 -4
- data/distro/common/html/knife-recipe.1.html +1 -1
- data/distro/common/html/knife-role.1.html +1 -1
- data/distro/common/html/knife-search.1.html +1 -1
- data/distro/common/html/knife-ssh.1.html +1 -1
- data/distro/common/html/knife-status.1.html +1 -1
- data/distro/common/html/knife-tag.1.html +1 -1
- data/distro/common/html/knife.1.html +1 -1
- data/distro/common/html/shef.1.html +1 -1
- data/distro/common/man/man1/knife-bootstrap.1 +1 -1
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +5 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man1/shef.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +1 -1
- data/distro/common/man/man8/{chef-expander-cluster.8 → chef-expander.8} +5 -5
- 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-cookbook-site.mkd +2 -0
- data/distro/common/markdown/man8/{chef-expander-cluster.mkd → chef-expander.mkd} +4 -4
- data/distro/debian/etc/default/{chef-solr-indexer → chef-expander} +2 -1
- data/distro/debian/etc/init.d/{chef-solr-indexer → chef-expander} +43 -43
- data/distro/debian/etc/init/chef-expander.conf +17 -0
- data/distro/redhat/etc/init.d/{chef-solr-indexer → chef-expander} +9 -9
- data/distro/redhat/etc/init.d/chef-server +2 -2
- data/distro/redhat/etc/init.d/chef-solr +1 -1
- data/distro/redhat/etc/logrotate.d/chef-expander +8 -0
- data/distro/redhat/etc/sysconfig/chef-expander +7 -0
- data/lib/chef.rb +1 -0
- data/lib/chef/api_client.rb +6 -0
- data/lib/chef/application.rb +5 -6
- data/lib/chef/application/client.rb +9 -0
- data/lib/chef/cookbook_uploader.rb +4 -1
- data/lib/chef/cookbook_version.rb +12 -15
- data/lib/chef/data_bag_item.rb +3 -3
- data/lib/chef/handler/error_report.rb +33 -0
- data/lib/chef/knife.rb +21 -4
- data/lib/chef/knife/bootstrap.rb +9 -5
- data/lib/chef/knife/bootstrap/archlinux-gems.erb +2 -1
- data/lib/chef/knife/bootstrap/centos5-gems.erb +9 -14
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +6 -13
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +6 -15
- data/lib/chef/knife/cookbook_list.rb +0 -1
- data/lib/chef/knife/cookbook_site_download.rb +26 -14
- data/lib/chef/knife/core/bootstrap_context.rb +81 -0
- data/lib/chef/knife/data_bag_create.rb +14 -12
- data/lib/chef/knife/data_bag_edit.rb +2 -2
- data/lib/chef/knife/data_bag_from_file.rb +2 -2
- data/lib/chef/knife/data_bag_show.rb +2 -2
- data/lib/chef/knife/search.rb +3 -0
- data/lib/chef/knife/ssh.rb +2 -0
- data/lib/chef/mixin/language.rb +1 -0
- data/lib/chef/monkey_patches/object.rb +9 -0
- data/lib/chef/provider/deploy.rb +1 -1
- data/lib/chef/provider/subversion.rb +1 -1
- data/lib/chef/recipe.rb +1 -0
- data/lib/chef/resource.rb +9 -8
- data/lib/chef/rest.rb +10 -6
- data/lib/chef/shell_out.rb +1 -1
- data/lib/chef/solr_query.rb +1 -1
- data/lib/chef/version.rb +1 -1
- metadata +16 -13
- data/distro/debian/etc/init/chef-solr-indexer.conf +0 -17
- data/distro/redhat/etc/logrotate.d/chef-solr-indexer +0 -8
- data/distro/redhat/etc/sysconfig/chef-solr-indexer +0 -7
@@ -1,8 +1,8 @@
|
|
1
|
-
LOGFILE=/var/log/chef/
|
1
|
+
LOGFILE=/var/log/chef/expander.log
|
2
2
|
CONFIG=/etc/chef/solr.rb
|
3
3
|
USER=chef
|
4
4
|
GROUP=chef
|
5
5
|
# Sleep to give daemon enough time to fully start or stop.
|
6
6
|
DIETIME=5
|
7
7
|
STARTTIME=5
|
8
|
-
|
8
|
+
CHEF_EXPANDER_ARGS="-d -c $CONFIG -L $LOGFILE -n 1 -i 1"
|
@@ -5,9 +5,9 @@
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
6
|
# you may not use this file except in compliance with the License.
|
7
7
|
# You may obtain a copy of the License at
|
8
|
-
#
|
8
|
+
#
|
9
9
|
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
#
|
10
|
+
#
|
11
11
|
# Unless required by applicable law or agreed to in writing, software
|
12
12
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
13
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
@@ -15,7 +15,7 @@
|
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
17
|
|
18
|
-
daemon_bin="/usr/bin/chef-
|
18
|
+
daemon_bin="/usr/bin/chef-expander"
|
19
19
|
daemon_name=$(basename $daemon_bin)
|
20
20
|
PIDF="/var/run/$daemon_name.pid"
|
21
21
|
|
@@ -33,7 +33,7 @@ case "$1" in
|
|
33
33
|
PID=$(get_pid)
|
34
34
|
if [ -z "$PID" ]; then
|
35
35
|
[ -f $PIDF ] && rm -f $PIDF
|
36
|
-
$daemon_bin -P $PIDF $
|
36
|
+
$daemon_bin -P $PIDF $CHEF_EXPANDER_ARGS
|
37
37
|
[ -n "$STARTTIME" ] && sleep $STARTTIME
|
38
38
|
if [ $? -gt 0 ]; then
|
39
39
|
stat_fail
|
@@ -131,7 +131,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
131
131
|
|
132
132
|
|
133
133
|
<ol class='man-decor man-foot man foot'>
|
134
|
-
<li class='tl'>Chef 0.10.0
|
134
|
+
<li class='tl'>Chef 0.10.0</li>
|
135
135
|
<li class='tc'>April 2011</li>
|
136
136
|
<li class='tr'>chef-client(8)</li>
|
137
137
|
</ol>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv='content-type' value='text/html;charset=utf8'>
|
5
5
|
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
|
6
|
-
<title>chef-expander
|
6
|
+
<title>chef-expander(8) - fetches messages from RabbitMQ, processes, and loads into chef-solr</title>
|
7
7
|
<style type='text/css' media='all'>
|
8
8
|
/* style: man */
|
9
9
|
body#manpage {margin:0}
|
@@ -67,19 +67,19 @@
|
|
67
67
|
</div>
|
68
68
|
|
69
69
|
<ol class='man-decor man-head man head'>
|
70
|
-
<li class='tl'>chef-expander
|
70
|
+
<li class='tl'>chef-expander(8)</li>
|
71
71
|
<li class='tc'>Chef Manual</li>
|
72
|
-
<li class='tr'>chef-expander
|
72
|
+
<li class='tr'>chef-expander(8)</li>
|
73
73
|
</ol>
|
74
74
|
|
75
75
|
<h2 id="NAME">NAME</h2>
|
76
76
|
<p class="man-name">
|
77
|
-
<code>chef-expander
|
77
|
+
<code>chef-expander</code> - <span class="man-whatis">fetches messages from RabbitMQ, processes, and loads into chef-solr</span>
|
78
78
|
</p>
|
79
79
|
|
80
80
|
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
81
|
|
82
|
-
<p><strong>chef-expander
|
82
|
+
<p><strong>chef-expander</strong> <em>(options)</em></p>
|
83
83
|
|
84
84
|
<dl>
|
85
85
|
<dt><code>-c</code>, <code>--config CONFIG_FILE</code></dt><dd>a configuration file to use</dd>
|
@@ -103,13 +103,13 @@ correct format to be loaded into Solr and loads them into Solr.</p>
|
|
103
103
|
|
104
104
|
<p>Chef Expander is designed for clustered operation, though small
|
105
105
|
installations will only need one worker process. To run Chef
|
106
|
-
Expander with one worker process, run chef-expander
|
106
|
+
Expander with one worker process, run chef-expander -n 1.
|
107
107
|
You will then have a master and worker process, which looks like
|
108
108
|
this in ps:</p>
|
109
109
|
|
110
110
|
<pre><code>your-shell> ps aux|grep expander
|
111
111
|
you 52110 0.1 0.7 2515476 62748 s003 S+ 3:49PM 0:00.80 chef-expander worker #1 (vnodes 0-1023)
|
112
|
-
you 52108 0.1 0.5 2492880 41696 s003 S+ 3:49PM 0:00.91 ruby bin/chef-expander
|
112
|
+
you 52108 0.1 0.5 2492880 41696 s003 S+ 3:49PM 0:00.91 ruby bin/chef-expander -n 1
|
113
113
|
</code></pre>
|
114
114
|
|
115
115
|
<p>Workers are single threaded and therefore cannot use more than 100%
|
@@ -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="ma&#
|
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,9 +154,9 @@ 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 0.10.0
|
157
|
+
<li class='tl'>Chef 0.10.0</li>
|
158
158
|
<li class='tc'>April 2011</li>
|
159
|
-
<li class='tr'>chef-expander
|
159
|
+
<li class='tr'>chef-expander(8)</li>
|
160
160
|
</ol>
|
161
161
|
|
162
162
|
</div>
|
@@ -136,7 +136,7 @@ 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 0.10.0
|
139
|
+
<li class='tl'>Chef 0.10.0</li>
|
140
140
|
<li class='tc'>April 2011</li>
|
141
141
|
<li class='tr'>chef-expanderctl(8)</li>
|
142
142
|
</ol>
|
@@ -175,7 +175,7 @@ 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 0.10.0
|
178
|
+
<li class='tl'>Chef 0.10.0</li>
|
179
179
|
<li class='tc'>April 2011</li>
|
180
180
|
<li class='tr'>chef-server-webui(8)</li>
|
181
181
|
</ol>
|
@@ -172,7 +172,7 @@ 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 0.10.0
|
175
|
+
<li class='tl'>Chef 0.10.0</li>
|
176
176
|
<li class='tc'>April 2011</li>
|
177
177
|
<li class='tr'>chef-server(8)</li>
|
178
178
|
</ol>
|
@@ -181,7 +181,7 @@ 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 0.10.0
|
184
|
+
<li class='tl'>Chef 0.10.0</li>
|
185
185
|
<li class='tc'>April 2011</li>
|
186
186
|
<li class='tr'>chef-solo(8)</li>
|
187
187
|
</ol>
|
@@ -153,7 +153,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
|
|
153
153
|
|
154
154
|
|
155
155
|
<ol class='man-decor man-foot man foot'>
|
156
|
-
<li class='tl'>Chef 0.10.0
|
156
|
+
<li class='tl'>Chef 0.10.0</li>
|
157
157
|
<li class='tc'>April 2011</li>
|
158
158
|
<li class='tr'>chef-solr(8)</li>
|
159
159
|
</ol>
|
@@ -231,7 +231,7 @@ 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 0.10.0
|
234
|
+
<li class='tl'>Chef 0.10.0</li>
|
235
235
|
<li class='tc'>April 2011</li>
|
236
236
|
<li class='tr'>knife-bootrap(1)</li>
|
237
237
|
</ol>
|
@@ -209,7 +209,7 @@ 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 0.10.0
|
212
|
+
<li class='tl'>Chef 0.10.0</li>
|
213
213
|
<li class='tc'>April 2011</li>
|
214
214
|
<li class='tr'>knife-client(1)</li>
|
215
215
|
</ol>
|
@@ -160,7 +160,7 @@ 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 0.10.0
|
163
|
+
<li class='tl'>Chef 0.10.0</li>
|
164
164
|
<li class='tc'>April 2011</li>
|
165
165
|
<li class='tr'>knife-configure(1)</li>
|
166
166
|
</ol>
|
@@ -134,6 +134,7 @@ cookbooks <em>COOKBOOK</em> depends on (via metadata <em>dependencies</em>).</p>
|
|
134
134
|
|
135
135
|
<dl>
|
136
136
|
<dt><code>-f</code>, <code>--file FILE</code></dt><dd>The filename to write to</dd>
|
137
|
+
<dt class="flush"><code>--force</code></dt><dd>Force download deprecated cookbook</dd>
|
137
138
|
</dl>
|
138
139
|
|
139
140
|
|
@@ -215,11 +216,11 @@ configuration file.</p>
|
|
215
216
|
|
216
217
|
<h2 id="AUTHOR">AUTHOR</h2>
|
217
218
|
|
218
|
-
<p> Chef was written by Adam Jacob <a href="&#
|
219
|
+
<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
220
|
|
220
221
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
221
222
|
|
222
|
-
<p> This manual page was written by Joshua Timberman <a href="&#
|
223
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
223
224
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
224
225
|
|
225
226
|
<h2 id="CHEF">CHEF</h2>
|
@@ -228,7 +229,7 @@ configuration file.</p>
|
|
228
229
|
|
229
230
|
|
230
231
|
<ol class='man-decor man-foot man foot'>
|
231
|
-
<li class='tl'>Chef 0.10.0
|
232
|
+
<li class='tl'>Chef 0.10.0</li>
|
232
233
|
<li class='tc'>April 2011</li>
|
233
234
|
<li class='tr'>knife-cookbook-site(1)</li>
|
234
235
|
</ol>
|
@@ -257,7 +257,7 @@ 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 0.10.0
|
260
|
+
<li class='tl'>Chef 0.10.0</li>
|
261
261
|
<li class='tc'>April 2011</li>
|
262
262
|
<li class='tr'>knife-environment(1)</li>
|
263
263
|
</ol>
|
@@ -115,7 +115,7 @@ 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 0.10.0
|
118
|
+
<li class='tl'>Chef 0.10.0</li>
|
119
119
|
<li class='tc'>April 2011</li>
|
120
120
|
<li class='tr'>knife-index(1)</li>
|
121
121
|
</ol>
|
@@ -247,11 +247,11 @@ run list, the correct syntax is "role[ROLE_NAME]"</p>
|
|
247
247
|
|
248
248
|
<h2 id="AUTHOR">AUTHOR</h2>
|
249
249
|
|
250
|
-
<p> Chef was written by Adam Jacob <a href="mailto&#
|
250
|
+
<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>
|
251
251
|
|
252
252
|
<h2 id="DOCUMENTATION">DOCUMENTATION</h2>
|
253
253
|
|
254
|
-
<p> This manual page was written by Joshua Timberman <a href="&#
|
254
|
+
<p> This manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a>.
|
255
255
|
Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
|
256
256
|
|
257
257
|
<h2 id="CHEF">CHEF</h2>
|
@@ -260,8 +260,8 @@ run list, the correct syntax is "role[ROLE_NAME]"</p>
|
|
260
260
|
|
261
261
|
|
262
262
|
<ol class='man-decor man-foot man foot'>
|
263
|
-
<li class='tl'>Chef 0.10.0
|
264
|
-
<li class='tc'>
|
263
|
+
<li class='tl'>Chef 0.10.0</li>
|
264
|
+
<li class='tc'>June 2011</li>
|
265
265
|
<li class='tr'>knife-node(1)</li>
|
266
266
|
</ol>
|
267
267
|
|
@@ -133,7 +133,7 @@ query syntax. The following data types are indexed for search:
|
|
133
133
|
|
134
134
|
|
135
135
|
<ol class='man-decor man-foot man foot'>
|
136
|
-
<li class='tl'>Chef 0.10.0
|
136
|
+
<li class='tl'>Chef 0.10.0</li>
|
137
137
|
<li class='tc'>April 2011</li>
|
138
138
|
<li class='tr'>knife-search(1)</li>
|
139
139
|
</ol>
|
@@ -118,7 +118,7 @@ may not be publicly reachable.</p>
|
|
118
118
|
|
119
119
|
|
120
120
|
<ol class='man-decor man-foot man foot'>
|
121
|
-
<li class='tl'>Chef 0.10.0
|
121
|
+
<li class='tl'>Chef 0.10.0</li>
|
122
122
|
<li class='tc'>April 2011</li>
|
123
123
|
<li class='tr'>knife-status(1)</li>
|
124
124
|
</ol>
|
@@ -273,7 +273,7 @@ and may become out of sync with the behavior of those libraries.</p>
|
|
273
273
|
|
274
274
|
|
275
275
|
<ol class='man-decor man-foot man foot'>
|
276
|
-
<li class='tl'>Chef 0.10.0
|
276
|
+
<li class='tl'>Chef 0.10.0</li>
|
277
277
|
<li class='tc'>April 2011</li>
|
278
278
|
<li class='tr'>shef(1)</li>
|
279
279
|
</ol>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-BOOTRAP" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-BOOTRAP" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-bootrap\fR \- Install Chef Client on a remote host
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-CLIENT" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-CLIENT" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-client\fR \- Manage Chef API Clients
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-CONFIGURE" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-CONFIGURE" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-configure\fR \- Generate configuration files for knife or Chef Client
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-COOKBOOK\-SITE" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-COOKBOOK\-SITE" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-cookbook\-site\fR \- Install and update open source cookbooks
|
@@ -52,6 +52,10 @@ If \fI\-d\fR is specified, the process is applied recursively to all the cookboo
|
|
52
52
|
\fB\-f\fR, \fB\-\-file FILE\fR
|
53
53
|
The filename to write to
|
54
54
|
.
|
55
|
+
.TP
|
56
|
+
\fB\-\-force\fR
|
57
|
+
Force download deprecated cookbook
|
58
|
+
.
|
55
59
|
.P
|
56
60
|
Downloads a specific cookbook from the Community site, optionally specifying a certain version\.
|
57
61
|
.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-COOKBOOK" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-COOKBOOK" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-cookbook\fR \- upload and manage chef cookbooks
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "KNIFE\-DATA\-BAG" "1" "April 2011" "Chef 0.10.0
|
4
|
+
.TH "KNIFE\-DATA\-BAG" "1" "April 2011" "Chef 0.10.0" "Chef Manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBknife\-data\-bag\fR \- Store arbitrary data on a Chef Server
|