chef 0.10.4 → 0.10.6.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. data/distro/common/html/chef-client.8.html +9 -4
  2. data/distro/common/html/chef-expander.8.html +4 -4
  3. data/distro/common/html/chef-expanderctl.8.html +4 -4
  4. data/distro/common/html/chef-server-webui.8.html +4 -4
  5. data/distro/common/html/chef-server.8.html +4 -4
  6. data/distro/common/html/chef-solo.8.html +4 -4
  7. data/distro/common/html/chef-solr.8.html +6 -4
  8. data/distro/common/html/knife-bootstrap.1.html +13 -11
  9. data/distro/common/html/knife-client.1.html +4 -4
  10. data/distro/common/html/knife-configure.1.html +4 -4
  11. data/distro/common/html/knife-cookbook-site.1.html +7 -5
  12. data/distro/common/html/knife-cookbook.1.html +10 -8
  13. data/distro/common/html/knife-data-bag.1.html +4 -4
  14. data/distro/common/html/knife-environment.1.html +4 -4
  15. data/distro/common/html/knife-exec.1.html +4 -4
  16. data/distro/common/html/knife-index.1.html +4 -4
  17. data/distro/common/html/knife-node.1.html +5 -26
  18. data/distro/common/html/knife-role.1.html +4 -4
  19. data/distro/common/html/knife-search.1.html +9 -8
  20. data/distro/common/html/knife-ssh.1.html +10 -10
  21. data/distro/common/html/knife-status.1.html +4 -4
  22. data/distro/common/html/knife-tag.1.html +4 -4
  23. data/distro/common/html/knife.1.html +36 -10
  24. data/distro/common/html/shef.1.html +4 -4
  25. data/distro/common/man/man1/knife-bootstrap.1 +18 -10
  26. data/distro/common/man/man1/knife-client.1 +1 -1
  27. data/distro/common/man/man1/knife-configure.1 +1 -1
  28. data/distro/common/man/man1/knife-cookbook-site.1 +10 -2
  29. data/distro/common/man/man1/knife-cookbook.1 +10 -5
  30. data/distro/common/man/man1/knife-data-bag.1 +1 -1
  31. data/distro/common/man/man1/knife-environment.1 +1 -1
  32. data/distro/common/man/man1/knife-exec.1 +1 -1
  33. data/distro/common/man/man1/knife-index.1 +1 -1
  34. data/distro/common/man/man1/knife-node.1 +2 -22
  35. data/distro/common/man/man1/knife-role.1 +1 -1
  36. data/distro/common/man/man1/knife-search.1 +8 -5
  37. data/distro/common/man/man1/knife-ssh.1 +17 -12
  38. data/distro/common/man/man1/knife-status.1 +1 -1
  39. data/distro/common/man/man1/knife-tag.1 +1 -1
  40. data/distro/common/man/man1/knife.1 +50 -9
  41. data/distro/common/man/man1/shef.1 +1 -1
  42. data/distro/common/man/man8/chef-client.8 +21 -1
  43. data/distro/common/man/man8/chef-expander.8 +1 -1
  44. data/distro/common/man/man8/chef-expanderctl.8 +1 -1
  45. data/distro/common/man/man8/chef-server-webui.8 +1 -1
  46. data/distro/common/man/man8/chef-server.8 +1 -1
  47. data/distro/common/man/man8/chef-solo.8 +1 -1
  48. data/distro/common/man/man8/chef-solr.8 +9 -1
  49. data/distro/common/markdown/man1/knife-bootstrap.mkd +9 -5
  50. data/distro/common/markdown/man1/knife-cookbook-site.mkd +5 -1
  51. data/distro/common/markdown/man1/knife-cookbook.mkd +7 -4
  52. data/distro/common/markdown/man1/knife-node.mkd +1 -19
  53. data/distro/common/markdown/man1/knife-search.mkd +5 -4
  54. data/distro/common/markdown/man1/knife-ssh.mkd +8 -0
  55. data/distro/common/markdown/man1/knife.mkd +39 -8
  56. data/distro/common/markdown/man8/chef-client.mkd +10 -0
  57. data/distro/common/markdown/man8/chef-solr.mkd +5 -1
  58. data/distro/debian/etc/init.d/chef-client +48 -38
  59. data/distro/redhat/etc/init.d/chef-client +6 -2
  60. data/lib/chef/checksum.rb +9 -24
  61. data/lib/chef/checksum/storage.rb +18 -0
  62. data/lib/chef/checksum/storage/filesystem.rb +56 -0
  63. data/lib/chef/config.rb +6 -2
  64. data/lib/chef/cookbook/syntax_check.rb +1 -1
  65. data/lib/chef/cookbook_version.rb +37 -9
  66. data/lib/chef/file_access_control.rb +1 -1
  67. data/lib/chef/handler.rb +21 -0
  68. data/lib/chef/knife/bootstrap.rb +3 -1
  69. data/lib/chef/knife/bootstrap/archlinux-gems.erb +10 -0
  70. data/lib/chef/knife/bootstrap/centos5-gems.erb +13 -2
  71. data/lib/chef/knife/bootstrap/fedora13-gems.erb +10 -0
  72. data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +10 -0
  73. data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +10 -0
  74. data/lib/chef/knife/client_create.rb +13 -7
  75. data/lib/chef/knife/client_delete.rb +0 -2
  76. data/lib/chef/knife/client_edit.rb +0 -3
  77. data/lib/chef/knife/client_list.rb +0 -1
  78. data/lib/chef/knife/client_reregister.rb +2 -3
  79. data/lib/chef/knife/client_show.rb +0 -1
  80. data/lib/chef/knife/configure.rb +1 -1
  81. data/lib/chef/knife/configure_client.rb +0 -2
  82. data/lib/chef/knife/cookbook_create.rb +12 -12
  83. data/lib/chef/knife/cookbook_delete.rb +2 -0
  84. data/lib/chef/knife/cookbook_download.rb +9 -6
  85. data/lib/chef/knife/cookbook_list.rb +1 -6
  86. data/lib/chef/knife/cookbook_metadata.rb +8 -8
  87. data/lib/chef/knife/cookbook_site_list.rb +4 -2
  88. data/lib/chef/knife/cookbook_test.rb +1 -1
  89. data/lib/chef/knife/core/bootstrap_context.rb +9 -0
  90. data/lib/chef/knife/core/generic_presenter.rb +8 -1
  91. data/lib/chef/knife/core/node_presenter.rb +30 -0
  92. data/lib/chef/knife/core/ui.rb +8 -3
  93. data/lib/chef/knife/data_bag_create.rb +2 -5
  94. data/lib/chef/knife/data_bag_from_file.rb +2 -6
  95. data/lib/chef/knife/node_show.rb +8 -3
  96. data/lib/chef/knife/role_create.rb +2 -2
  97. data/lib/chef/knife/role_from_file.rb +12 -5
  98. data/lib/chef/knife/search.rb +1 -1
  99. data/lib/chef/knife/ssh.rb +20 -3
  100. data/lib/chef/mixin/command/windows.rb +1 -1
  101. data/lib/chef/platform.rb +24 -0
  102. data/lib/chef/provider/deploy.rb +93 -17
  103. data/lib/chef/provider/file.rb +5 -1
  104. data/lib/chef/provider/group/groupadd.rb +11 -1
  105. data/lib/chef/provider/ifconfig.rb +66 -5
  106. data/lib/chef/provider/package.rb +41 -5
  107. data/lib/chef/provider/package/apt.rb +10 -0
  108. data/lib/chef/provider/package/yum.rb +59 -14
  109. data/lib/chef/provider/remote_directory.rb +0 -1
  110. data/lib/chef/provider/service/debian.rb +2 -2
  111. data/lib/chef/provider/service/invokercd.rb +35 -0
  112. data/lib/chef/provider/service/windows.rb +92 -83
  113. data/lib/chef/resource.rb +4 -1
  114. data/lib/chef/resource/deploy.rb +9 -0
  115. data/lib/chef/resource/group.rb +8 -0
  116. data/lib/chef/resource/ifconfig.rb +12 -2
  117. data/lib/chef/resource/package.rb +1 -1
  118. data/lib/chef/resource/service.rb +1 -10
  119. data/lib/chef/shef/shef_session.rb +2 -1
  120. data/lib/chef/shell_out.rb +0 -1
  121. data/lib/chef/shell_out/windows.rb +508 -52
  122. data/lib/chef/solr_query/solr_http_request.rb +19 -5
  123. data/lib/chef/tasks/chef_repo.rake +9 -5
  124. data/lib/chef/version.rb +1 -1
  125. metadata +414 -453
@@ -88,14 +88,19 @@
88
88
  <dt><code>-g</code>, <code>--group GROUP</code></dt><dd>Group to set privilege to</dd>
89
89
  <dt><code>-i</code>, <code>--interval SECONDS</code></dt><dd>Run chef-client periodically, in seconds</dd>
90
90
  <dt><code>-j</code>, <code>--json-attributes JSON_ATTRIBS</code></dt><dd>Load attributes from a JSON file or URL</dd>
91
+ <dt><code>-E</code>, <code>--environment ENVIRONMENT</code></dt><dd>Set the Chef Environment on the node</dd>
91
92
  <dt><code>-l</code>, <code>--log_level LEVEL</code></dt><dd>Set the log level (debug, info, warn, error, fatal)</dd>
92
93
  <dt><code>-L</code>, <code>--logfile LOGLOCATION</code></dt><dd>Set the log file location, defaults to STDOUT - recommended for
93
94
  daemonizing</dd>
94
95
  <dt><code>-V</code>, <code>--verbose</code></dt><dd>Ensures logging goes to STDOUT as well as to other configured
95
96
  log location(s).</dd>
96
97
  <dt><code>-N</code>, <code>--node-name NODE_NAME</code></dt><dd>The node name for this client</dd>
98
+ <dt><code>-K</code>, <code>--validation_key KEY_FILE</code></dt><dd>Set the validation key file location, used for registering new clients</dd>
99
+ <dt><code>-k</code>, <code>--client_key KEY_FILE</code></dt><dd>Set the client key file location</dd>
97
100
  <dt><code>-s</code>, <code>--splay SECONDS</code></dt><dd>The splay time for running at intervals, in seconds</dd>
98
101
  <dt><code>-u</code>, <code>--user USER</code></dt><dd>User to set privilege to</dd>
102
+ <dt><code>-P</code>, <code>--pid PIDFILE</code></dt><dd>Set the PID file location, defaults to /tmp/chef-client.pid</dd>
103
+ <dt class="flush"><code>--once</code></dt><dd>Cancel any interval or splay options, run chef once and exit</dd>
99
104
  <dt><code>-v</code>, <code>--version</code></dt><dd>Show chef version</dd>
100
105
  <dt><code>-h</code>, <code>--help</code></dt><dd>Show this message</dd>
101
106
  </dl>
@@ -120,9 +125,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
120
125
 
121
126
  <h2 id="AUTHOR">AUTHOR</h2>
122
127
 
123
- <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#115;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
128
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x73;&#x70;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;</a> of Opscode
124
129
  (http://www.opscode.com), with contributions from the community. This
125
- manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;</a> with
130
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#106;&#111;&#x73;&#x68;&#x75;&#x61;&#x40;&#x6f;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#x61;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#x2e;&#99;&#111;&#109;</a> with
126
131
  help2man. Permission is granted to copy, distribute and / or modify
127
132
  this document under the terms of the Apache 2.0 License.</p>
128
133
 
@@ -131,8 +136,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
131
136
 
132
137
 
133
138
  <ol class='man-decor man-foot man foot'>
134
- <li class='tl'>Chef 0.10.4</li>
135
- <li class='tc'>August 2011</li>
139
+ <li class='tl'>Chef 0.10.6.beta.1</li>
140
+ <li class='tc'>October 2011</li>
136
141
  <li class='tr'>chef-client(8)</li>
137
142
  </ol>
138
143
 
@@ -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="&#109;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#115;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
146
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x73;&#x70;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;</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="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6e;&#x75;&#111;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#110;&#117;&#111;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#109;</a>. Permission is
148
+ manual page was created by Nuo Yan <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#110;&#117;&#x6f;&#x40;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6e;&#117;&#x6f;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;</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 0.10.4</li>
158
- <li class='tc'>August 2011</li>
157
+ <li class='tl'>Chef 0.10.6.beta.1</li>
158
+ <li class='tc'>October 2011</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="&#109;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#115;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
128
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#x6f;&#x73;&#112;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</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="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6e;&#x75;&#111;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#110;&#117;&#111;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#109;</a>. Permission is
130
+ manual page was created by Nuo Yan <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6e;&#117;&#111;&#64;&#111;&#112;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#110;&#x75;&#111;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#109;</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 0.10.4</li>
140
- <li class='tc'>August 2011</li>
139
+ <li class='tl'>Chef 0.10.6.beta.1</li>
140
+ <li class='tc'>October 2011</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="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a> of Opscode
166
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#x6f;&#x73;&#112;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</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="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#109;</a> with
168
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#115;&#104;&#117;&#97;&#x40;&#x6f;&#x70;&#x73;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</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 0.10.4</li>
179
- <li class='tc'>August 2011</li>
178
+ <li class='tl'>Chef 0.10.6.beta.1</li>
179
+ <li class='tc'>October 2011</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="&#109;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#115;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
164
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#97;&#x6d;&#x40;&#x6f;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#101;&#46;&#99;&#111;&#x6d;</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="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;</a> with
166
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#x70;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#x61;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#x63;&#x6f;&#109;</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 0.10.4</li>
176
- <li class='tc'>August 2011</li>
175
+ <li class='tl'>Chef 0.10.6.beta.1</li>
176
+ <li class='tc'>October 2011</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 href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a> of Opscode
173
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#97;&#x6d;&#x40;&#x6f;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#101;&#46;&#99;&#111;&#x6d;</a> of Opscode
174
174
  (http://www.opscode.com), with contributions from the community. This
175
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#109;</a> with
175
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#x70;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#x61;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#x63;&#x6f;&#109;</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 0.10.4</li>
185
- <li class='tc'>August 2011</li>
184
+ <li class='tl'>Chef 0.10.6.beta.1</li>
185
+ <li class='tc'>October 2011</li>
186
186
  <li class='tr'>chef-solo(8)</li>
187
187
  </ol>
188
188
 
@@ -87,10 +87,12 @@
87
87
  <dt><code>-g</code>, <code>--group GROUP</code></dt><dd>Group to set privilege to</dd>
88
88
  <dt><code>-l</code>, <code>--log_level LEVEL</code></dt><dd>Set the log level (debug, info, warn, error, fatal)</dd>
89
89
  <dt><code>-L</code>, <code>--logfile LOGLOCATION</code></dt><dd>Set the log file location, defaults to STDOUT - recommended for daemonizing</dd>
90
+ <dt><code>-P</code>, <code>--pid PIDFILE</code></dt><dd>Set the PID file location, defaults to /tmp/chef-solr.pid</dd>
90
91
  <dt><code>-D</code>, <code>--solr-data-dir PATH</code></dt><dd>Where the Solr data lives</dd>
91
92
  <dt><code>-x</code>, <code>--solor-heap-size SIZE</code></dt><dd>Set the size of the Java Heap</dd>
92
93
  <dt><code>-H</code>, <code>--solr-home-dir PATH</code></dt><dd>Solr home directory</dd>
93
94
  <dt><code>-j</code>, <code>--java-opts OPTS</code></dt><dd>Raw options passed to Java</dd>
95
+ <dt><code>-x</code>, <code>--solor-heap-size</code></dt><dd>Set the size of the Java Heap</dd>
94
96
  <dt><code>-W</code>, <code>--solr-jetty-dir PATH</code></dt><dd>Where to place the Solr Jetty instance</dd>
95
97
  <dt><code>-u</code>, <code>--user USER</code></dt><dd>User to set privilege to</dd>
96
98
  <dt><code>-v</code>, <code>--version</code></dt><dd>Show chef-solr version</dd>
@@ -142,9 +144,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
142
144
 
143
145
  <h2 id="AUTHOR">AUTHOR</h2>
144
146
 
145
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a> of Opscode
147
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x61;&#100;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#112;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#115;&#x70;&#99;&#111;&#100;&#101;&#46;&#x63;&#111;&#x6d;</a> of Opscode
146
148
  (http://www.opscode.com), with contributions from the community. This
147
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#109;</a> with
149
+ manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#x61;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#109;</a> with
148
150
  help2man. Permission is granted to copy, distribute and / or modify
149
151
  this document under the terms of the Apache 2.0 License.</p>
150
152
 
@@ -153,8 +155,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
153
155
 
154
156
 
155
157
  <ol class='man-decor man-foot man foot'>
156
- <li class='tl'>Chef 0.10.4</li>
157
- <li class='tc'>August 2011</li>
158
+ <li class='tl'>Chef 0.10.6.beta.1</li>
159
+ <li class='tc'>October 2011</li>
158
160
  <li class='tr'>chef-solr(8)</li>
159
161
  </ol>
160
162
 
@@ -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>knife-bootrap(1) - Install Chef Client on a remote host</title>
6
+ <title>knife-bootstrap(1) - Install Chef Client on a remote host</title>
7
7
  <style type='text/css' media='all'>
8
8
  /* style: man */
9
9
  body#manpage {margin:0}
@@ -71,14 +71,14 @@
71
71
  </div>
72
72
 
73
73
  <ol class='man-decor man-head man head'>
74
- <li class='tl'>knife-bootrap(1)</li>
74
+ <li class='tl'>knife-bootstrap(1)</li>
75
75
  <li class='tc'>Chef Manual</li>
76
- <li class='tr'>knife-bootrap(1)</li>
76
+ <li class='tr'>knife-bootstrap(1)</li>
77
77
  </ol>
78
78
 
79
79
  <h2 id="NAME">NAME</h2>
80
80
  <p class="man-name">
81
- <code>knife-bootrap</code> - <span class="man-whatis">Install Chef Client on a remote host</span>
81
+ <code>knife-bootstrap</code> - <span class="man-whatis">Install Chef Client on a remote host</span>
82
82
  </p>
83
83
 
84
84
  <h2 id="SYNOPSIS">SYNOPSIS</h2>
@@ -90,13 +90,15 @@
90
90
  <dt><code>-N</code>, <code>--node-name NAME</code></dt><dd>The Chef node name for your new node</dd>
91
91
  <dt><code>-P</code>, <code>--ssh-password PASSWORD</code></dt><dd>The ssh password</dd>
92
92
  <dt><code>-x</code>, <code>--ssh-user USERNAME</code></dt><dd>The ssh username</dd>
93
+ <dt><code>-p</code>, <code>--ssh-port PORT</code></dt><dd>The ssh port</dd>
94
+ <dt><code>--bootstrap-version VERSION</code></dt><dd>The version of Chef to install</dd>
95
+ <dt><code>--bootstrap-proxy PROXY_URL</code></dt><dd><code>The proxy server for the node being bootstrapped</code></dd>
93
96
  <dt><code>--prerelease</code></dt><dd>Install pre-release Chef gems</dd>
94
97
  <dt><code>-r</code>, <code>--run-list RUN_LIST</code></dt><dd>Comma separated list of roles/recipes to apply</dd>
95
- <dt><code>-P</code>, <code>--ssh-password PASSWORD</code></dt><dd>The ssh password</dd>
96
- <dt><code>-x</code>, <code>--ssh-user USERNAME</code></dt><dd>The ssh username</dd>
97
98
  <dt><code>--template-file TEMPLATE</code></dt><dd>Full path to location of template to use</dd>
98
99
  <dt class="flush"><code>--sudo</code></dt><dd>Execute the bootstrap via sudo</dd>
99
100
  <dt><code>-d</code>, <code>--distro DISTRO</code></dt><dd>Bootstrap a distro using a template</dd>
101
+ <dt><code>--no-host-key-verify</code></dt><dd>Disable host key verification</dd>
100
102
  </dl>
101
103
 
102
104
 
@@ -218,11 +220,11 @@ to other users via the process list using tools such as <span class="man-ref">ps
218
220
 
219
221
  <h2 id="AUTHOR">AUTHOR</h2>
220
222
 
221
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x61;&#100;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#111;&#x64;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
223
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
222
224
 
223
225
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
224
226
 
225
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#x3a;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a>.
227
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#116;&#x6f;&#58;&#106;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#x6f;&#x70;&#x73;&#x63;&#111;&#100;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;</a>.
226
228
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
227
229
 
228
230
  <h2 id="CHEF">CHEF</h2>
@@ -231,9 +233,9 @@ to other users via the process list using tools such as <span class="man-ref">ps
231
233
 
232
234
 
233
235
  <ol class='man-decor man-foot man foot'>
234
- <li class='tl'>Chef 0.10.4</li>
235
- <li class='tc'>August 2011</li>
236
- <li class='tr'>knife-bootrap(1)</li>
236
+ <li class='tl'>Chef 0.10.6.beta.1</li>
237
+ <li class='tc'>October 2011</li>
238
+ <li class='tr'>knife-bootstrap(1)</li>
237
239
  </ol>
238
240
 
239
241
  </div>
@@ -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="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x61;&#100;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#111;&#x64;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
199
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</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="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#x3a;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a>.
203
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#116;&#x6f;&#58;&#106;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#x6f;&#x70;&#x73;&#x63;&#111;&#100;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;</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 0.10.4</li>
213
- <li class='tc'>August 2011</li>
212
+ <li class='tl'>Chef 0.10.6.beta.1</li>
213
+ <li class='tc'>October 2011</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="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a> with many contributions from the community.</p>
150
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;</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="&#x6d;&#x61;&#105;&#x6c;&#x74;&#x6f;&#58;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#106;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;</a>.
154
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6a;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#x2e;&#x63;&#111;&#109;</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 0.10.4</li>
164
- <li class='tc'>August 2011</li>
163
+ <li class='tl'>Chef 0.10.6.beta.1</li>
164
+ <li class='tc'>October 2011</li>
165
165
  <li class='tr'>knife-configure(1)</li>
166
166
  </ol>
167
167
 
@@ -102,6 +102,8 @@
102
102
 
103
103
  <dl>
104
104
  <dt><code>-D</code>, <code>--no-dependencies</code></dt><dd>Do not install dependencies automatically</dd>
105
+ <dt><code>-o</code>, <code>--cookbook-path PATH</code></dt><dd>Install cookbooks to PATH</dd>
106
+ <dt><code>-B</code>, <code>--branch BRANCH</code></dt><dd>Default branch to work with [defaults to master]</dd>
105
107
  </dl>
106
108
 
107
109
 
@@ -120,7 +122,7 @@ upstream;</li>
120
122
 
121
123
 
122
124
  <p>By installing cookbook with this process, you can locally modify the
123
- upstream cookbook in your master branch ant let git maintain your
125
+ upstream cookbook in your master branch and let git maintain your
124
126
  changes as a separate patch. When an updated upstream version becomes
125
127
  available, you will be able to merge the upstream changes while
126
128
  maintaining your local modifications.</p>
@@ -216,11 +218,11 @@ configuration file.</p>
216
218
 
217
219
  <h2 id="AUTHOR">AUTHOR</h2>
218
220
 
219
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x61;&#100;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#111;&#x64;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
221
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
220
222
 
221
223
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
222
224
 
223
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#x3a;&#x6a;&#x6f;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x6a;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#x2e;&#x63;&#111;&#109;</a>.
224
226
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
225
227
 
226
228
  <h2 id="CHEF">CHEF</h2>
@@ -229,8 +231,8 @@ configuration file.</p>
229
231
 
230
232
 
231
233
  <ol class='man-decor man-foot man foot'>
232
- <li class='tl'>Chef 0.10.4</li>
233
- <li class='tc'>August 2011</li>
234
+ <li class='tl'>Chef 0.10.6.beta.1</li>
235
+ <li class='tc'>October 2011</li>
234
236
  <li class='tr'>knife-cookbook-site(1)</li>
235
237
  </ol>
236
238
 
@@ -119,6 +119,7 @@
119
119
  <dt><code>-f</code>, <code>--fqdn fqdn </code></dt><dd>the fqdn of the host to see the file for</dd>
120
120
  <dt><code>-p</code>, <code>--platform platform </code></dt><dd>the platform to see the file for</dd>
121
121
  <dt><code>-v</code>, <code>--platform-version version</code></dt><dd>the platform version to see the file for</dd>
122
+ <dt><code>-w</code>, <code>--with-uri</code></dt><dd>Show corresponding URIs</dd>
122
123
  </dl>
123
124
 
124
125
 
@@ -218,7 +219,7 @@ regular expression (<em>regex</em>) should be in quotes, not in //'s.</p>
218
219
 
219
220
  <dl>
220
221
  <dt><code>-o</code>, <code>--cookbook-path path</code></dt><dd>the directory where the cookbook will be created</dd>
221
- <dt><code>-r</code>, <code>--readme-format format</code></dt><dd>format of the readme file</dd>
222
+ <dt><code>-r</code>, <code>--readme-format format</code></dt><dd>format of the readme file md, mkd, txt, rdoc</dd>
222
223
  <dt><code>-c</code>, <code>--copyright copyright</code></dt><dd>name of copyright holder</dd>
223
224
  <dt><code>-i</code>, <code>--license license</code></dt><dd>license for cookbook, apachev2 or none</dd>
224
225
  <dt><code>-e</code>, <code>--email email</code></dt><dd>email address of cookbook maintainer</dd>
@@ -236,14 +237,14 @@ named cookbook.</p>
236
237
  <li>cookbook/libraries</li>
237
238
  <li>cookbook/metadata.rb</li>
238
239
  <li>cookbook/providers</li>
239
- <li>cookbook/readme.rdoc</li>
240
+ <li>cookbook/readme.md</li>
240
241
  <li>cookbook/recipes/default.rb</li>
241
242
  <li>cookbook/resources</li>
242
243
  <li>cookbook/templates/default</li>
243
244
  </ul>
244
245
 
245
246
 
246
- <p>supported readme formats are 'rdoc' (default), 'md', 'mkd', 'txt'. the
247
+ <p>supported readme formats are 'md' (default), 'mkd', 'txt', 'rdoc'. the
247
248
  readme file will be written with the specified extension and a set of
248
249
  helpful starting headers.</p>
249
250
 
@@ -264,12 +265,13 @@ non-redistributable.</p>
264
265
  maintainer. if this value is not specified, an all-caps string
265
266
  <code>your_email</code> is used which can easily be changed with find/replace.</p>
266
267
 
267
- <p>the cookbook copyright, license and email settings can be filled in the
268
+ <p>the cookbook copyright, license, email and readme_format settings can be filled in the
268
269
  <code>knife.rb</code>, for example with default values:</p>
269
270
 
270
271
  <pre><code>cookbook_copyright "your_company_name"
271
272
  cookbook_license "none"
272
273
  cookbook_email "your_email"
274
+ readme_format "md"
273
275
  </code></pre>
274
276
 
275
277
  <h2 id="METADATA">METADATA</h2>
@@ -359,11 +361,11 @@ cookbook.</p>
359
361
 
360
362
  <h2 id="AUTHOR">AUTHOR</h2>
361
363
 
362
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#109;</a> with many contributions from the community.</p>
364
+ <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
363
365
 
364
366
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
365
367
 
366
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#x68;&#117;&#97;&#64;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a>.
368
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#x6a;&#x6f;&#115;&#x68;&#x75;&#x61;&#64;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#x6d;</a>.
367
369
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
368
370
 
369
371
  <h2 id="CHEF">CHEF</h2>
@@ -372,8 +374,8 @@ cookbook.</p>
372
374
 
373
375
 
374
376
  <ol class='man-decor man-foot man foot'>
375
- <li class='tl'>Chef 0.10.4</li>
376
- <li class='tc'>August 2011</li>
377
+ <li class='tl'>Chef 0.10.6.beta.1</li>
378
+ <li class='tc'>October 2011</li>
377
379
  <li class='tr'>knife-cookbook(1)</li>
378
380
  </ol>
379
381
 
@@ -211,11 +211,11 @@ encryption keys.</p>
211
211
 
212
212
  <h2 id="AUTHOR">AUTHOR</h2>
213
213
 
214
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a> with many contributions from the community.</p>
214
+ <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
215
215
 
216
216
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
217
217
 
218
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#x6f;&#58;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#106;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;</a>.
218
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#x6a;&#x6f;&#115;&#x68;&#x75;&#x61;&#64;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#x6d;</a>.
219
219
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
220
220
 
221
221
  <h2 id="CHEF">CHEF</h2>
@@ -224,8 +224,8 @@ encryption keys.</p>
224
224
 
225
225
 
226
226
  <ol class='man-decor man-foot man foot'>
227
- <li class='tl'>Chef 0.10.4</li>
228
- <li class='tc'>August 2011</li>
227
+ <li class='tl'>Chef 0.10.6.beta.1</li>
228
+ <li class='tc'>October 2011</li>
229
229
  <li class='tr'>knife-data-bag(1)</li>
230
230
  </ol>
231
231