chef 10.26.0 → 10.28.0.rc.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -102,11 +102,11 @@ time for all objects to be indexed and available for search.</p>
102
102
 
103
103
  <h2 id="AUTHOR">AUTHOR</h2>
104
104
 
105
- <p> Chef was written by Adam Jacob <a 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>
105
+ <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>
106
106
 
107
107
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
108
108
 
109
- <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>.
109
+ <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>.
110
110
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
111
111
 
112
112
  <h2 id="CHEF">CHEF</h2>
@@ -115,8 +115,8 @@ time for all objects to be indexed and available for search.</p>
115
115
 
116
116
 
117
117
  <ol class='man-decor man-foot man foot'>
118
- <li class='tl'>Chef 10.26.0</li>
119
- <li class='tc'>May 2013</li>
118
+ <li class='tl'>Chef 10.28.0.rc.0</li>
119
+ <li class='tc'>August 2013</li>
120
120
  <li class='tr'>knife-index(1)</li>
121
121
  </ol>
122
122
 
@@ -227,11 +227,11 @@ run list, the correct syntax is "role[ROLE_NAME]"</p>
227
227
 
228
228
  <h2 id="AUTHOR">AUTHOR</h2>
229
229
 
230
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#x6f;&#58;&#97;&#100;&#x61;&#109;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a> with many contributions from the community.</p>
230
+ <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>
231
231
 
232
232
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
233
233
 
234
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#111;&#58;&#x6a;&#x6f;&#115;&#104;&#117;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;</a>.
234
+ <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>.
235
235
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
236
236
 
237
237
  <h2 id="CHEF">CHEF</h2>
@@ -240,8 +240,8 @@ run list, the correct syntax is "role[ROLE_NAME]"</p>
240
240
 
241
241
 
242
242
  <ol class='man-decor man-foot man foot'>
243
- <li class='tl'>Chef 10.26.0</li>
244
- <li class='tc'>May 2013</li>
243
+ <li class='tl'>Chef 10.28.0.rc.0</li>
244
+ <li class='tc'>August 2013</li>
245
245
  <li class='tr'>knife-node(1)</li>
246
246
  </ol>
247
247
 
@@ -177,11 +177,11 @@ run_list.</p>
177
177
 
178
178
  <h2 id="AUTHOR">AUTHOR</h2>
179
179
 
180
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#x6f;&#58;&#97;&#100;&#x61;&#109;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a> with many contributions from the community.</p>
180
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#109;</a> with many contributions from the community.</p>
181
181
 
182
182
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
183
183
 
184
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#111;&#58;&#x6a;&#x6f;&#115;&#104;&#117;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;</a>.
184
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#106;&#111;&#115;&#104;&#x75;&#x61;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;</a>.
185
185
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
186
186
 
187
187
  <h2 id="CHEF">CHEF</h2>
@@ -190,8 +190,8 @@ run_list.</p>
190
190
 
191
191
 
192
192
  <ol class='man-decor man-foot man foot'>
193
- <li class='tl'>Chef 10.26.0</li>
194
- <li class='tc'>May 2013</li>
193
+ <li class='tl'>Chef 10.28.0.rc.0</li>
194
+ <li class='tc'>August 2013</li>
195
195
  <li class='tr'>knife-role(1)</li>
196
196
  </ol>
197
197
 
@@ -265,11 +265,11 @@ www.example.com:</p>
265
265
 
266
266
  <h2 id="AUTHOR">AUTHOR</h2>
267
267
 
268
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#x6f;&#58;&#97;&#100;&#x61;&#109;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a> with many contributions from the community.</p>
268
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#109;</a> with many contributions from the community.</p>
269
269
 
270
270
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
271
271
 
272
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#111;&#58;&#x6a;&#x6f;&#115;&#104;&#117;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;</a>.
272
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#106;&#111;&#115;&#104;&#x75;&#x61;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;</a>.
273
273
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
274
274
 
275
275
  <h2 id="CHEF">CHEF</h2>
@@ -278,8 +278,8 @@ www.example.com:</p>
278
278
 
279
279
 
280
280
  <ol class='man-decor man-foot man foot'>
281
- <li class='tl'>Chef 10.26.0</li>
282
- <li class='tc'>May 2013</li>
281
+ <li class='tl'>Chef 10.28.0.rc.0</li>
282
+ <li class='tc'>August 2013</li>
283
283
  <li class='tr'>knife-search(1)</li>
284
284
  </ol>
285
285
 
@@ -133,11 +133,11 @@ option.</dd>
133
133
 
134
134
  <h2 id="AUTHOR">AUTHOR</h2>
135
135
 
136
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#97;&#100;&#97;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a> with many contributions from the community.</p>
136
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#109;</a> with many contributions from the community.</p>
137
137
 
138
138
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
139
139
 
140
- <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#58;&#106;&#111;&#115;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#109;</a>.
140
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#106;&#111;&#115;&#104;&#x75;&#x61;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;</a>.
141
141
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
142
142
 
143
143
  <h2 id="CHEF">CHEF</h2>
@@ -146,8 +146,8 @@ option.</dd>
146
146
 
147
147
 
148
148
  <ol class='man-decor man-foot man foot'>
149
- <li class='tl'>Chef 10.26.0</li>
150
- <li class='tc'>May 2013</li>
149
+ <li class='tl'>Chef 10.28.0.rc.0</li>
150
+ <li class='tc'>August 2013</li>
151
151
  <li class='tr'>knife-ssh(1)</li>
152
152
  </ol>
153
153
 
@@ -105,11 +105,11 @@ may not be publicly reachable.</p>
105
105
 
106
106
  <h2 id="AUTHOR">AUTHOR</h2>
107
107
 
108
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#97;&#100;&#97;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a> with many contributions from the community.</p>
108
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
109
109
 
110
110
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
111
111
 
112
- <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#58;&#106;&#111;&#115;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#109;</a>.
112
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#58;&#106;&#111;&#115;&#104;&#x75;&#97;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#111;&#x6d;</a>.
113
113
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
114
114
 
115
115
  <h2 id="CHEF">CHEF</h2>
@@ -118,8 +118,8 @@ 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 10.26.0</li>
122
- <li class='tc'>May 2013</li>
121
+ <li class='tl'>Chef 10.28.0.rc.0</li>
122
+ <li class='tc'>August 2013</li>
123
123
  <li class='tr'>knife-status(1)</li>
124
124
  </ol>
125
125
 
@@ -114,11 +114,11 @@
114
114
 
115
115
  <h2 id="AUTHOR">AUTHOR</h2>
116
116
 
117
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#97;&#100;&#97;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a> with many contributions from the community.</p>
117
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
118
118
 
119
119
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
120
120
 
121
- <p> This manual page was written by Daniel DeLeo <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#58;&#100;&#97;&#110;&#x40;&#x6f;&#x70;&#115;&#99;&#111;&#x64;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x64;&#97;&#110;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#109;</a>.
121
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#58;&#100;&#97;&#110;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#100;&#x61;&#x6e;&#64;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;</a>.
122
122
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
123
123
 
124
124
  <h2 id="CHEF">CHEF</h2>
@@ -127,8 +127,8 @@
127
127
 
128
128
 
129
129
  <ol class='man-decor man-foot man foot'>
130
- <li class='tl'>Chef 10.26.0</li>
131
- <li class='tc'>May 2013</li>
130
+ <li class='tl'>Chef 10.28.0.rc.0</li>
131
+ <li class='tc'>August 2013</li>
132
132
  <li class='tr'>knife-tag(1)</li>
133
133
  </ol>
134
134
 
@@ -291,12 +291,12 @@ data editing entirely.</dd>
291
291
 
292
292
  <h2 id="AUTHOR">AUTHOR</h2>
293
293
 
294
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#115;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#x6d;</a> of Opscode
294
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#109;</a> of Opscode
295
295
  (<a href="http://www.opscode.com" data-bare-link="true">http://www.opscode.com</a>), with contributions from the community.</p>
296
296
 
297
297
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
298
298
 
299
- <p> This 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>.</p>
299
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#58;&#106;&#111;&#115;&#104;&#x75;&#97;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#111;&#x6d;</a>.</p>
300
300
 
301
301
  <h2 id="LICENSE">LICENSE</h2>
302
302
 
@@ -310,8 +310,8 @@ data editing entirely.</dd>
310
310
 
311
311
 
312
312
  <ol class='man-decor man-foot man foot'>
313
- <li class='tl'>Chef 10.26.0</li>
314
- <li class='tc'>May 2013</li>
313
+ <li class='tl'>Chef 10.28.0.rc.0</li>
314
+ <li class='tc'>August 2013</li>
315
315
  <li class='tr'>knife(1)</li>
316
316
  </ol>
317
317
 
@@ -258,12 +258,12 @@ and may become out of sync with the behavior of those libraries.</p>
258
258
 
259
259
  <h2 id="AUTHOR">AUTHOR</h2>
260
260
 
261
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#115;&#x63;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#x6d;</a> with many
261
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#109;</a> with many
262
262
  contributions from the community. Shef was written by Daniel DeLeo.</p>
263
263
 
264
264
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
265
265
 
266
- <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#111;&#x3a;&#x64;&#97;&#110;&#x40;&#111;&#112;&#115;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#100;&#x61;&#110;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#109;</a>.
266
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#58;&#100;&#97;&#110;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#100;&#x61;&#x6e;&#64;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;</a>.
267
267
  Permission is granted to copy, distribute and / or modify this
268
268
  document under the terms of the Apache 2.0 License.</p>
269
269
 
@@ -273,8 +273,8 @@ 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 10.26.0</li>
277
- <li class='tc'>May 2013</li>
276
+ <li class='tl'>Chef 10.28.0.rc.0</li>
277
+ <li class='tc'>August 2013</li>
278
278
  <li class='tr'>shef(1)</li>
279
279
  </ol>
280
280
 
@@ -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\-BOOTSTRAP" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-BOOTSTRAP" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-bootstrap\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" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-CLIENT" "1" "August 2013" "Chef 10.28.0.rc.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" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-CONFIGURE" "1" "August 2013" "Chef 10.28.0.rc.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" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-COOKBOOK\-SITE" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-cookbook\-site\fR \- Install and update open source 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\-COOKBOOK" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-COOKBOOK" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-cookbook\fR \- upload and manage chef cookbooks
@@ -105,20 +105,7 @@ Overrides the frozen flag on a cookbook, allowing you to overwrite a cookbook ve
105
105
  Uploads one or more cookbooks from your local cookbook repository(ies) to the Chef Server\. Only files that don\'t yet exist on the server will be uploaded\.
106
106
  .
107
107
  .P
108
- As the command parses the name args as 1\.\.n cookbook names:
109
- .
110
- .IP "" 4
111
- .
112
- .nf
113
-
114
- `knife cookbook upload COOKBOOK COOKBOOK \.\.\.`
115
- .
116
- .fi
117
- .
118
- .IP "" 0
119
- .
120
- .P
121
- works for one to many cookbooks\.
108
+ As the command parses the name args as 1\.\.n cookbook names: \fBknife cookbook upload COOKBOOK COOKBOOK \.\.\.\fR works for one to many cookbooks\.
122
109
  .
123
110
  .SH "DOWNLOAD"
124
111
  \fBknife cookbook download cookbook [version]\fR \fI(options)\fR
@@ -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" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-DATA\-BAG" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-data\-bag\fR \- Store arbitrary data on a Chef Server
@@ -105,20 +105,7 @@ Data Bag Items may be encrypted to keep their contents secret\. This may be desi
105
105
  Data Bag Item encryption uses the AES\-256 CBC symmetric key algorithm\.
106
106
  .
107
107
  .P
108
- \fBCAVEATS:\fR Keys are not encrypted; only values are encrypted\. The "id" of a Data Bag Item is not encrypted, since it is used by Chef Server to store the item in its database\. For example, given the following data bag item:
109
- .
110
- .IP "" 4
111
- .
112
- .nf
113
-
114
- {"id": "important_passwords", "secret_password": "opensesame"}
115
- .
116
- .fi
117
- .
118
- .IP "" 0
119
- .
120
- .P
121
- The key "secret_password" will be visible to an evesdropper, but the value "opensesame" will be protected\. Both the key "id" and its value "important_passwords" will be visible to an evesdropper\.
108
+ \fBCAVEATS:\fR Keys are not encrypted; only values are encrypted\. The "id" of a Data Bag Item is not encrypted, since it is used by Chef Server to store the item in its database\. For example, given the following data bag item: {"id": "important_passwords", "secret_password": "opensesame"} The key "secret_password" will be visible to an evesdropper, but the value "opensesame" will be protected\. Both the key "id" and its value "important_passwords" will be visible to an evesdropper\.
122
109
  .
123
110
  .P
124
111
  Chef Server does not provide a secure mechanism for distributing encryption keys\.
@@ -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\-ENVIRONMENT" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-ENVIRONMENT" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-environment\fR \- Define cookbook policies for the environments in your infrastructure
@@ -41,17 +41,7 @@ Fetch \fIenvironment\fR and display it in the text editor for editing\. The envi
41
41
  Create or update an environment from the JSON or Ruby format \fIfile\fR\. See \fBformat\fR for the proper format of this file\.
42
42
  .
43
43
  .SH "LIST"
44
- \fBknife environment list\fR \fI(options)\fR * \fB\-w\fR, \fB\-\-with\-uri\fR:
45
- .
46
- .IP "" 4
47
- .
48
- .nf
49
-
50
- Show the resource URI for each environment
51
- .
52
- .fi
53
- .
54
- .IP "" 0
44
+ \fBknife environment list\fR \fI(options)\fR * \fB\-w\fR, \fB\-\-with\-uri\fR: Show the resource URI for each environment
55
45
  .
56
46
  .SH "SHOW"
57
47
  \fBknife environment show\fR \fIenvironment\fR \fI(options)\fR
@@ -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\-EXEC" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-EXEC" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-exec\fR \- Run user scripts using the Chef API DSL
@@ -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\-INDEX" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-INDEX" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-index\fR \- Rebuild the search index on a Chef Server
@@ -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\-NODE" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-NODE" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-node\fR \- Manage the hosts in your infrastructure
@@ -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\-ROLE" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-ROLE" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-role\fR \- Group common configuration settings
@@ -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\-SEARCH" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-SEARCH" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-search\fR \- Find objects on a Chef Server by query
@@ -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\-SSH" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-SSH" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-ssh\fR \- Run a command or interactive session on multiple remote hosts
@@ -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\-STATUS" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-STATUS" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-status\fR \- Display status information for the nodes in your infrastructure
@@ -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\-TAG" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE\-TAG" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-tag\fR \- Apply tags to nodes on a Chef Server
@@ -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" "1" "May 2013" "Chef 10.26.0" "Chef Manual"
4
+ .TH "KNIFE" "1" "August 2013" "Chef 10.28.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\fR \- Chef Server API client utility