chef 10.14.0.beta.3 → 10.14.0.rc.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. data/distro/common/html/chef-client.8.html +4 -6
  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 +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 +5 -5
  11. data/distro/common/html/knife-cookbook-site.1.html +7 -7
  12. data/distro/common/html/knife-cookbook.1.html +4 -4
  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 -5
  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 +5 -5
  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 +5 -5
  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 +1 -1
  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 +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 +5 -5
  41. data/distro/common/man/man1/shef.1 +1 -1
  42. data/distro/common/man/man8/chef-client.8 +1 -5
  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 +1 -1
  49. data/distro/common/markdown/man1/knife.mkd +2 -2
  50. data/distro/common/markdown/man8/chef-client.mkd +0 -3
  51. data/lib/chef/client.rb +13 -3
  52. data/lib/chef/config.rb +29 -0
  53. data/lib/chef/environment.rb +5 -2
  54. data/lib/chef/file_access_control/unix.rb +3 -3
  55. data/lib/chef/knife.rb +11 -5
  56. data/lib/chef/knife/bootstrap.rb +9 -5
  57. data/lib/chef/knife/bootstrap/archlinux-gems.erb +1 -1
  58. data/lib/chef/knife/bootstrap/centos5-gems.erb +1 -1
  59. data/lib/chef/knife/bootstrap/chef-full.erb +1 -1
  60. data/lib/chef/knife/bootstrap/fedora13-gems.erb +1 -1
  61. data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +1 -1
  62. data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +1 -1
  63. data/lib/chef/knife/bootstrap/ubuntu12.04-gems.erb +1 -1
  64. data/lib/chef/knife/cookbook_create.rb +24 -1
  65. data/lib/chef/knife/ssh.rb +14 -2
  66. data/lib/chef/platform.rb +22 -2
  67. data/lib/chef/provider/file.rb +9 -3
  68. data/lib/chef/provider/group/usermod.rb +7 -4
  69. data/lib/chef/provider/mdadm.rb +3 -3
  70. data/lib/chef/provider/package/ips.rb +101 -0
  71. data/lib/chef/provider/package/solaris.rb +21 -12
  72. data/lib/chef/provider/service/solaris.rb +0 -3
  73. data/lib/chef/provider/user/dscl.rb +1 -1
  74. data/lib/chef/providers.rb +1 -0
  75. data/lib/chef/resource/ips_package.rb +42 -0
  76. data/lib/chef/resource/package.rb +6 -7
  77. data/lib/chef/resources.rb +1 -0
  78. data/lib/chef/rest/auth_credentials.rb +4 -3
  79. data/lib/chef/scan_access_control.rb +3 -9
  80. data/lib/chef/shef/ext.rb +22 -0
  81. data/lib/chef/version.rb +1 -1
  82. data/spec/functional/knife/cookbook_delete_spec.rb +5 -2
  83. data/spec/functional/knife/exec_spec.rb +5 -2
  84. data/spec/functional/knife/ssh_spec.rb +4 -2
  85. data/spec/functional/resource/link_spec.rb +4 -4
  86. data/spec/functional/resource/remote_file_spec.rb +17 -1
  87. data/spec/support/platform_helpers.rb +8 -0
  88. data/spec/support/shared/functional/securable_resource.rb +2 -2
  89. data/spec/tiny_server.rb +5 -1
  90. data/spec/unit/client_spec.rb +24 -0
  91. data/spec/unit/environment_spec.rb +26 -0
  92. data/spec/unit/knife/bootstrap_spec.rb +34 -11
  93. data/spec/unit/knife/config_file_selection_spec.rb +2 -2
  94. data/spec/unit/knife/configure_spec.rb +6 -0
  95. data/spec/unit/knife/cookbook_create_spec.rb +20 -0
  96. data/spec/unit/knife/ssh_spec.rb +145 -0
  97. data/spec/unit/mixin/command_spec.rb +8 -4
  98. data/spec/unit/mixin/enforce_ownership_and_permissions_spec.rb +2 -1
  99. data/spec/unit/mixin/securable_spec.rb +2 -2
  100. data/spec/unit/provider/file_spec.rb +6 -4
  101. data/spec/unit/provider/group/usermod_spec.rb +6 -1
  102. data/spec/unit/provider/link_spec.rb +4 -1
  103. data/spec/unit/provider/mdadm_spec.rb +10 -13
  104. data/spec/unit/provider/package/ips_spec.rb +210 -0
  105. data/spec/unit/provider/package/solaris_spec.rb +6 -4
  106. data/spec/unit/provider/subversion_spec.rb +2 -2
  107. data/spec/unit/provider/user/dscl_spec.rb +15 -0
  108. data/spec/unit/resource/ips_package_spec.rb +43 -0
  109. data/spec/unit/rest/auth_credentials_spec.rb +36 -14
  110. data/spec/unit/scan_access_control_spec.rb +20 -0
  111. metadata +13 -8
@@ -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;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#97;&#100;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
268
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#x6c;&#x74;&#x6f;&#x3a;&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#64;&#111;&#112;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#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;&#97;&#105;&#x6c;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#104;&#x75;&#x61;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#115;&#104;&#x75;&#97;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#109;</a>.
272
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#x6a;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#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.14.0.beta.3</li>
282
- <li class='tc'>July 2012</li>
281
+ <li class='tl'>Chef 10.14.0.rc.0</li>
282
+ <li class='tc'>August 2012</li>
283
283
  <li class='tr'>knife-search(1)</li>
284
284
  </ol>
285
285
 
@@ -133,21 +133,21 @@ option.</dd>
133
133
 
134
134
  <h2 id="AUTHOR">AUTHOR</h2>
135
135
 
136
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#x6c;&#116;&#111;&#58;&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
136
+ <p> Chef was written by Adam Jacob <a data-bare-link="true" href="&#109;&#97;&#105;&#x6c;&#x74;&#x6f;&#x3a;&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#109;">&#x61;&#100;&#x61;&#x6d;&#64;&#111;&#112;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#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="&#x6d;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#115;&#x68;&#117;&#x61;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a>.
140
+ <p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="&#109;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#x6a;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;">&#x6a;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#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>
144
144
 
145
- <p> Knife is distributed with Chef. <a href="http://wiki.opscode.com/display/chef/Home" data-bare-link="true">http://wiki.opscode.com/display/chef/Home</a></p>
145
+ <p> Knife is distributed with Chef. <a data-bare-link="true" href="http://wiki.opscode.com/display/chef/Home">http://wiki.opscode.com/display/chef/Home</a></p>
146
146
 
147
147
 
148
148
  <ol class='man-decor man-foot man foot'>
149
- <li class='tl'>Chef 10.14.0.beta.3</li>
150
- <li class='tc'>July 2012</li>
149
+ <li class='tl'>Chef 10.14.0.rc.0</li>
150
+ <li class='tc'>August 2012</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="&#109;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#97;&#x64;&#97;&#109;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a> with many contributions from the community.</p>
108
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#x3a;&#97;&#x64;&#97;&#x6d;&#x40;&#x6f;&#112;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;</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="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#106;&#x6f;&#115;&#104;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#117;&#97;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</a>.
112
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#x6c;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#104;&#x75;&#97;&#x40;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#117;&#x61;&#64;&#111;&#112;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#109;</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.14.0.beta.3</li>
122
- <li class='tc'>July 2012</li>
121
+ <li class='tl'>Chef 10.14.0.rc.0</li>
122
+ <li class='tc'>August 2012</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 data-bare-link="true" href="&#109;&#97;&#105;&#x6c;&#116;&#111;&#58;&#97;&#100;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;">&#x61;&#x64;&#x61;&#109;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
117
+ <p> Chef was written by Adam Jacob <a data-bare-link="true" href="&#109;&#97;&#105;&#x6c;&#x74;&#x6f;&#x3a;&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#109;">&#x61;&#100;&#x61;&#x6d;&#64;&#111;&#112;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#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 data-bare-link="true" href="&#x6d;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x64;&#97;&#110;&#x40;&#111;&#x70;&#115;&#x63;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;">&#x64;&#97;&#110;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;</a>.
121
+ <p> This manual page was written by Daniel DeLeo <a data-bare-link="true" href="&#109;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#x64;&#97;&#110;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;">&#100;&#x61;&#110;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#46;&#x63;&#111;&#x6d;</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.14.0.beta.3</li>
131
- <li class='tc'>July 2012</li>
130
+ <li class='tl'>Chef 10.14.0.rc.0</li>
131
+ <li class='tc'>August 2012</li>
132
132
  <li class='tr'>knife-tag(1)</li>
133
133
  </ol>
134
134
 
@@ -132,11 +132,11 @@ documentation using <code>knife help TOPIC</code>.</p>
132
132
  <dt><code>-E</code>, <code>--environment ENVIRONMENT</code></dt><dd>Set the Chef environment</dd>
133
133
  <dt><code>-e</code>, <code>--editor</code> EDITOR</dt><dd>Set the editor to use for interactive commands</dd>
134
134
  <dt><code>-F</code>, <code>--format</code> FORMAT</dt><dd>Which format to use for output. See FORMATS for details.</dd>
135
- <dt><code>-V</code>, <code>--verbose</code></dt><dd>More verbose output. Use twice for max verbosity</dd>
136
135
  <dt><code>-d</code>, <code>--disable-editing</code></dt><dd>Do not open EDITOR, just accept the data as is</dd>
137
136
  <dt><code>-u</code>, <code>--user</code> USER</dt><dd>API Client Username, corresponds to <code>Chef::Config</code> <code>node_name</code>.</dd>
138
137
  <dt><code>-p</code>, <code>--print-after</code></dt><dd>Show the data after a destructive operation</dd>
139
138
  <dt><code>-v</code>, <code>--version</code></dt><dd>Show chef version</dd>
139
+ <dt><code>-V</code>, <code>--verbose</code></dt><dd>More verbose output. Use twice for max verbosity.</dd>
140
140
  <dt><code>-y</code>, <code>--yes</code></dt><dd>Say yes to all prompts for confirmation</dd>
141
141
  <dt><code>--defaults</code></dt><dd>Accept default values for all questions</dd>
142
142
  <dt><code>--[no-]color</code></dt><dd>Use colored output. Color enabled by default.</dd>
@@ -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 data-bare-link="true" href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#x6f;&#109;">&#97;&#x64;&#97;&#109;&#64;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;</a> of Opscode
294
+ <p> Chef was written by Adam Jacob <a data-bare-link="true" href="&#x6d;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x70;&#115;&#99;&#111;&#100;&#x65;&#46;&#99;&#111;&#109;">&#x61;&#x64;&#x61;&#x6d;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;</a> of Opscode
295
295
  (<a data-bare-link="true" href="http://www.opscode.com">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 data-bare-link="true" href="&#109;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#x6a;&#111;&#115;&#x68;&#x75;&#x61;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;">&#x6a;&#x6f;&#115;&#104;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#101;&#46;&#99;&#x6f;&#x6d;</a>.</p>
299
+ <p> This manual page was written by Joshua Timberman <a data-bare-link="true" href="&#x6d;&#97;&#x69;&#x6c;&#116;&#111;&#x3a;&#106;&#111;&#115;&#x68;&#117;&#97;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#109;">&#x6a;&#111;&#x73;&#104;&#x75;&#x61;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#101;&#46;&#99;&#x6f;&#109;</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.14.0.beta.3</li>
314
- <li class='tc'>July 2012</li>
313
+ <li class='tl'>Chef 10.14.0.rc.0</li>
314
+ <li class='tc'>August 2012</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="&#x6d;&#x61;&#x69;&#x6c;&#116;&#x6f;&#58;&#x61;&#100;&#97;&#x6d;&#64;&#111;&#112;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;</a> with many
261
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x70;&#115;&#99;&#111;&#100;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#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="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#100;&#x61;&#x6e;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x64;&#x61;&#x6e;&#x40;&#111;&#x70;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;</a>.
266
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#111;&#x3a;&#100;&#97;&#110;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x64;&#x61;&#110;&#x40;&#111;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#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.14.0.beta.3</li>
277
- <li class='tc'>July 2012</li>
276
+ <li class='tl'>Chef 10.14.0.rc.0</li>
277
+ <li class='tc'>August 2012</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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-BOOTSTRAP" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-CLIENT" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-CONFIGURE" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-COOKBOOK\-SITE" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-COOKBOOK" "1" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-cookbook\fR \- upload and manage chef cookbooks
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "KNIFE\-DATA\-BAG" "1" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-DATA\-BAG" "1" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\-data\-bag\fR \- Store arbitrary data 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\-ENVIRONMENT" "1" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-ENVIRONMENT" "1" "August 2012" "Chef 10.14.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
@@ -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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-EXEC" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-INDEX" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-NODE" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-ROLE" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-SEARCH" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-SSH" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-STATUS" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE\-TAG" "1" "August 2012" "Chef 10.14.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" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "KNIFE" "1" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBknife\fR \- Chef Server API client utility
@@ -92,10 +92,6 @@ Set the editor to use for interactive commands
92
92
  Which format to use for output\. See FORMATS for details\.
93
93
  .
94
94
  .TP
95
- \fB\-V\fR, \fB\-\-verbose\fR
96
- More verbose output\. Use twice for max verbosity
97
- .
98
- .TP
99
95
  \fB\-d\fR, \fB\-\-disable\-editing\fR
100
96
  Do not open EDITOR, just accept the data as is
101
97
  .
@@ -112,6 +108,10 @@ Show the data after a destructive operation
112
108
  Show chef version
113
109
  .
114
110
  .TP
111
+ \fB\-V\fR, \fB\-\-verbose\fR
112
+ More verbose output\. Use twice for max verbosity\.
113
+ .
114
+ .TP
115
115
  \fB\-y\fR, \fB\-\-yes\fR
116
116
  Say yes to all prompts for confirmation
117
117
  .
@@ -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 "SHEF" "1" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "SHEF" "1" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBshef\fR \- Interactive Chef Console
@@ -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 "CHEF\-CLIENT" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-CLIENT" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-client\fR \- Runs a client node connecting to a chef\-server\.
@@ -46,10 +46,6 @@ Set the log level (debug, info, warn, error, fatal)
46
46
  Set the log file location, defaults to STDOUT \- recommended for daemonizing
47
47
  .
48
48
  .TP
49
- \fB\-V\fR, \fB\-\-verbose\fR
50
- Ensures logging goes to STDOUT as well as to other configured log location(s)\.
51
- .
52
- .TP
53
49
  \fB\-N\fR, \fB\-\-node\-name NODE_NAME\fR
54
50
  The node name for this client
55
51
  .
@@ -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 "CHEF\-EXPANDER" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-EXPANDER" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-expander\fR \- fetches messages from RabbitMQ, processes, and loads into chef\-solr
@@ -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 "CHEF\-EXPANDERCTL" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-EXPANDERCTL" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-expanderctl\fR \- management program for chef\-expander
@@ -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 "CHEF\-SERVER\-WEBUI" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-SERVER\-WEBUI" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-server\-webui\fR \- Start the Chef Server merb application slice providing Web User Interface (Management Console)\.
@@ -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 "CHEF\-SERVER" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-SERVER" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-server\fR \- Start the Chef Server merb application slice\.
@@ -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 "CHEF\-SOLO" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-SOLO" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-solo\fR \- Runs chef in solo mode against a specified cookbook location\.
@@ -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 "CHEF\-SOLR" "8" "July 2012" "Chef 10.14.0.beta.3" "Chef Manual"
4
+ .TH "CHEF\-SOLR" "8" "August 2012" "Chef 10.14.0.rc.0" "Chef Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBchef\-solr\fR \- Runs as Chef\'s search server
@@ -46,8 +46,6 @@ documentation using `knife help TOPIC`.
46
46
  Set the editor to use for interactive commands
47
47
  * `-F`, `--format` FORMAT:
48
48
  Which format to use for output. See FORMATS for details.
49
- * `-V`, `--verbose`:
50
- More verbose output. Use twice for max verbosity
51
49
  * `-d`, `--disable-editing`:
52
50
  Do not open EDITOR, just accept the data as is
53
51
  * `-u`, `--user` USER:
@@ -56,6 +54,8 @@ documentation using `knife help TOPIC`.
56
54
  Show the data after a destructive operation
57
55
  * `-v`, `--version`:
58
56
  Show chef version
57
+ * `-V`, `--verbose`:
58
+ More verbose output. Use twice for max verbosity.
59
59
  * `-y`, `--yes`:
60
60
  Say yes to all prompts for confirmation
61
61
  * `--defaults`: