chef 10.26.0 → 10.28.0.rc.0

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