chef 11.8.4.ohai7.0-x86-mingw32 → 11.10.0.alpha.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/distro/common/html/chef-client.8.html +3 -3
  3. data/distro/common/html/chef-expander.8.html +3 -3
  4. data/distro/common/html/chef-expanderctl.8.html +3 -3
  5. data/distro/common/html/chef-server-webui.8.html +3 -3
  6. data/distro/common/html/chef-server.8.html +3 -3
  7. data/distro/common/html/chef-shell.1.html +3 -3
  8. data/distro/common/html/chef-solo.8.html +3 -3
  9. data/distro/common/html/chef-solr.8.html +4 -4
  10. data/distro/common/html/knife-bootstrap.1.html +3 -3
  11. data/distro/common/html/knife-client.1.html +3 -3
  12. data/distro/common/html/knife-configure.1.html +3 -3
  13. data/distro/common/html/knife-cookbook-site.1.html +3 -3
  14. data/distro/common/html/knife-cookbook.1.html +3 -3
  15. data/distro/common/html/knife-data-bag.1.html +3 -3
  16. data/distro/common/html/knife-environment.1.html +3 -3
  17. data/distro/common/html/knife-exec.1.html +3 -3
  18. data/distro/common/html/knife-index.1.html +3 -3
  19. data/distro/common/html/knife-node.1.html +3 -3
  20. data/distro/common/html/knife-role.1.html +3 -3
  21. data/distro/common/html/knife-search.1.html +3 -3
  22. data/distro/common/html/knife-ssh.1.html +3 -3
  23. data/distro/common/html/knife-status.1.html +3 -3
  24. data/distro/common/html/knife-tag.1.html +3 -3
  25. data/distro/common/html/knife.1.html +3 -3
  26. data/distro/common/man/man8/chef-client.8 +3 -3
  27. data/distro/common/man/man8/chef-solo.8 +5 -2
  28. data/lib/chef.rb +2 -0
  29. data/lib/chef/application.rb +7 -2
  30. data/lib/chef/application/apply.rb +6 -0
  31. data/lib/chef/application/client.rb +3 -1
  32. data/lib/chef/application/knife.rb +2 -0
  33. data/lib/chef/application/solo.rb +1 -1
  34. data/lib/chef/client.rb +14 -11
  35. data/lib/chef/config.rb +4 -1
  36. data/lib/chef/cookbook_uploader.rb +14 -7
  37. data/lib/chef/encrypted_data_bag_item.rb +6 -303
  38. data/lib/chef/encrypted_data_bag_item/decryption_failure.rb +22 -0
  39. data/lib/chef/encrypted_data_bag_item/decryptor.rb +201 -0
  40. data/lib/chef/encrypted_data_bag_item/encryptor.rb +142 -0
  41. data/lib/chef/encrypted_data_bag_item/unacceptable_encrypted_data_bag_item_format.rb +22 -0
  42. data/lib/chef/encrypted_data_bag_item/unsupported_cipher.rb +22 -0
  43. data/lib/chef/encrypted_data_bag_item/unsupported_encrypted_data_bag_item_format.rb +22 -0
  44. data/lib/chef/exceptions.rb +1 -0
  45. data/lib/chef/formatters/doc.rb +19 -3
  46. data/lib/chef/http/basic_client.rb +1 -1
  47. data/lib/chef/http/http_request.rb +7 -0
  48. data/lib/chef/knife.rb +8 -1
  49. data/lib/chef/knife/bootstrap.rb +1 -1
  50. data/lib/chef/knife/cookbook_site_share.rb +2 -2
  51. data/lib/chef/knife/cookbook_upload.rb +7 -1
  52. data/lib/chef/knife/core/subcommand_loader.rb +2 -2
  53. data/lib/chef/knife/data_bag_create.rb +7 -0
  54. data/lib/chef/knife/environment_compare.rb +127 -0
  55. data/lib/chef/mixin/command.rb +11 -12
  56. data/lib/chef/mixin/deep_merge.rb +4 -4
  57. data/lib/chef/monkey_patches/net_http.rb +34 -0
  58. data/lib/chef/monkey_patches/uri.rb +70 -0
  59. data/lib/chef/platform/provider_mapping.rb +1 -0
  60. data/lib/chef/provider/cookbook_file.rb +8 -0
  61. data/lib/chef/provider/cron.rb +1 -1
  62. data/lib/chef/provider/directory.rb +7 -0
  63. data/lib/chef/provider/file.rb +17 -4
  64. data/lib/chef/provider/git.rb +23 -5
  65. data/lib/chef/provider/group.rb +30 -11
  66. data/lib/chef/provider/group/dscl.rb +26 -4
  67. data/lib/chef/provider/group/gpasswd.rb +14 -19
  68. data/lib/chef/provider/group/groupadd.rb +41 -1
  69. data/lib/chef/provider/group/groupmod.rb +46 -36
  70. data/lib/chef/provider/group/pw.rb +59 -16
  71. data/lib/chef/provider/group/suse.rb +16 -13
  72. data/lib/chef/provider/group/usermod.rb +38 -15
  73. data/lib/chef/provider/group/windows.rb +13 -6
  74. data/lib/chef/provider/ohai.rb +5 -6
  75. data/lib/chef/provider/remote_file.rb +8 -0
  76. data/lib/chef/provider/template.rb +8 -0
  77. data/lib/chef/provider/user.rb +5 -1
  78. data/lib/chef/provider/user/useradd.rb +7 -0
  79. data/lib/chef/provider/whyrun_safe_ruby_block.rb +30 -0
  80. data/lib/chef/providers.rb +1 -0
  81. data/lib/chef/resource/deploy.rb +18 -0
  82. data/lib/chef/resource/group.rb +11 -0
  83. data/lib/chef/resource/scm.rb +18 -0
  84. data/lib/chef/resource/whyrun_safe_ruby_block.rb +31 -0
  85. data/lib/chef/resources.rb +1 -0
  86. data/lib/chef/run_context.rb +11 -0
  87. data/lib/chef/shell/ext.rb +1 -1
  88. data/lib/chef/util/windows/net_group.rb +5 -1
  89. data/lib/chef/version.rb +1 -1
  90. data/spec/functional/resource/base.rb +3 -1
  91. data/spec/functional/resource/deploy_revision_spec.rb +1 -1
  92. data/spec/functional/resource/git_spec.rb +1 -1
  93. data/spec/functional/resource/group_spec.rb +257 -118
  94. data/spec/integration/client/client_spec.rb +82 -8
  95. data/spec/integration/client/ipv6_spec.rb +133 -0
  96. data/spec/integration/knife/cookbook_api_ipv6_spec.rb +111 -0
  97. data/spec/scripts/ssl-serve.rb +52 -0
  98. data/spec/spec_helper.rb +7 -6
  99. data/spec/support/platform_helpers.rb +21 -0
  100. data/spec/support/shared/functional/windows_script.rb +2 -1
  101. data/spec/support/shared/unit/provider/file.rb +181 -43
  102. data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +18 -0
  103. data/spec/unit/application/client_spec.rb +1 -0
  104. data/spec/unit/client_spec.rb +14 -1
  105. data/spec/unit/config_spec.rb +20 -0
  106. data/spec/unit/encrypted_data_bag_item_spec.rb +32 -18
  107. data/spec/unit/knife/cookbook_upload_spec.rb +14 -0
  108. data/spec/unit/knife/core/subcommand_loader_spec.rb +2 -2
  109. data/spec/unit/knife/data_bag_create_spec.rb +7 -0
  110. data/spec/unit/knife/environment_compare_spec.rb +112 -0
  111. data/spec/unit/knife_spec.rb +6 -1
  112. data/spec/unit/monkey_patches/uri_spec.rb +34 -0
  113. data/spec/unit/provider/cookbook_file_spec.rb +2 -1
  114. data/spec/unit/provider/cron_spec.rb +6 -0
  115. data/spec/unit/provider/file_spec.rb +3 -1
  116. data/spec/unit/provider/git_spec.rb +28 -4
  117. data/spec/unit/provider/group/dscl_spec.rb +1 -0
  118. data/spec/unit/provider/group/gpasswd_spec.rb +16 -9
  119. data/spec/unit/provider/group/groupadd_spec.rb +3 -4
  120. data/spec/unit/provider/group/groupmod_spec.rb +0 -1
  121. data/spec/unit/provider/group/pw_spec.rb +11 -14
  122. data/spec/unit/provider/group/usermod_spec.rb +19 -4
  123. data/spec/unit/provider/group/windows_spec.rb +0 -8
  124. data/spec/unit/provider/group_spec.rb +26 -4
  125. data/spec/unit/provider/ohai_spec.rb +1 -0
  126. data/spec/unit/provider/remote_file_spec.rb +4 -3
  127. data/spec/unit/provider/template_spec.rb +5 -3
  128. data/spec/unit/provider/user_spec.rb +6 -0
  129. data/spec/unit/provider/whyrun_safe_ruby_block_spec.rb +47 -0
  130. data/spec/unit/resource/scm_spec.rb +10 -0
  131. data/spec/unit/rest/auth_credentials_spec.rb +4 -1
  132. data/spec/unit/rest_spec.rb +12 -3
  133. metadata +69 -121
  134. data/spec/functional/resource/ohai_spec.rb +0 -65
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 643b05f54816d9a3aee4250b357f7c847f9287be
4
+ data.tar.gz: f174f7580ca273ae96a1931e67ed467ef883830f
5
+ SHA512:
6
+ metadata.gz: 5ada62b35525b1f2d73d4cb0939e72dfb74162bd0641b04991792d93a441ada6ae6bffdfc58798711a2b4204c3d2a80e35f8afdc85c79c9c26e29ac058e702de
7
+ data.tar.gz: b7aaeb88a2e9ba7376bf0fe6c459f883072524095d01dcd327bade6a6ba0d48e337f24b6c51fa8b0516ed5f7946975c772fa4426a67444df17ad33f92faf3532
@@ -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;&#x3a;&#97;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#111;&#x6d;</a> of Opscode
127
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#x6f;&#115;&#112;&#99;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</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;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#104;&#117;&#97;&#x40;&#111;&#x70;&#115;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#104;&#117;&#x61;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</a> with
129
+ manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#58;&#x6a;&#111;&#115;&#x68;&#x75;&#97;&#64;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#109;</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,7 +135,7 @@ 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 11.8.2</li>
138
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
139
139
  <li class='tc'>December 2013</li>
140
140
  <li class='tr'>chef-client(8)</li>
141
141
  </ol>
@@ -143,9 +143,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
143
143
 
144
144
  <h2 id="AUTHOR">AUTHOR</h2>
145
145
 
146
- <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#97;&#100;&#x61;&#109;&#x40;&#111;&#x73;&#x70;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#111;&#x6d;</a> of Opscode
146
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#x6f;&#115;&#112;&#99;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</a> of Opscode
147
147
  (http://www.opscode.com), with contributions from the community. This
148
- manual page was created by Nuo Yan <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#58;&#110;&#117;&#x6f;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6e;&#x75;&#111;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;</a>. Permission is
148
+ manual page was created by Nuo Yan <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#58;&#x6e;&#117;&#111;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#110;&#117;&#111;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</a>. Permission is
149
149
  granted to copy, distribute and / or modify this document under the
150
150
  terms of the Apache 2.0 License.</p>
151
151
 
@@ -154,7 +154,7 @@ 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 11.8.2</li>
157
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
158
158
  <li class='tc'>December 2013</li>
159
159
  <li class='tr'>chef-expander(8)</li>
160
160
  </ol>
@@ -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;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#97;&#x64;&#97;&#x6d;&#x40;&#111;&#115;&#112;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#x40;&#111;&#115;&#112;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> of Opscode
128
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#x6f;&#115;&#112;&#99;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</a> of Opscode
129
129
  (http://www.opscode.com), with contributions from the community. This
130
- manual page was created by Nuo Yan <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#x6e;&#x75;&#x6f;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x6e;&#x75;&#x6f;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;</a>. Permission is
130
+ manual page was created by Nuo Yan <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#111;&#58;&#x6e;&#117;&#111;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#110;&#117;&#111;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</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,7 +136,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
136
136
 
137
137
 
138
138
  <ol class='man-decor man-foot man foot'>
139
- <li class='tl'>Chef 11.8.2</li>
139
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
140
140
  <li class='tc'>December 2013</li>
141
141
  <li class='tr'>chef-expanderctl(8)</li>
142
142
  </ol>
@@ -163,9 +163,9 @@ is located on the Chef wiki, http://wiki.opscode.com/display/chef/Home.</p>
163
163
 
164
164
  <h2 id="AUTHOR">AUTHOR</h2>
165
165
 
166
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#97;&#x64;&#97;&#x6d;&#x40;&#111;&#115;&#112;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#x40;&#111;&#115;&#112;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> of Opscode
166
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#100;&#97;&#109;&#64;&#111;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#111;&#109;</a> of Opscode
167
167
  (http://www.opscode.com), with contributions from the community. This
168
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a> with
168
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#117;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#x2e;&#99;&#111;&#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,7 +175,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
175
175
 
176
176
 
177
177
  <ol class='man-decor man-foot man foot'>
178
- <li class='tl'>Chef 11.8.2</li>
178
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
179
179
  <li class='tc'>December 2013</li>
180
180
  <li class='tr'>chef-server-webui(8)</li>
181
181
  </ol>
@@ -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;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#97;&#x64;&#97;&#x6d;&#x40;&#111;&#115;&#112;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#x40;&#111;&#115;&#112;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> of Opscode
164
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#100;&#97;&#109;&#64;&#111;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#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="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a> with
166
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#117;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#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,7 +172,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
172
172
 
173
173
 
174
174
  <ol class='man-decor man-foot man foot'>
175
- <li class='tl'>Chef 11.8.2</li>
175
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
176
176
  <li class='tc'>December 2013</li>
177
177
  <li class='tr'>chef-server(8)</li>
178
178
  </ol>
@@ -260,13 +260,13 @@ libraries.</p>
260
260
 
261
261
  <h2 id="AUTHOR">AUTHOR</h2>
262
262
 
263
- <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;</a> with many
263
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#x3a;&#97;&#100;&#97;&#109;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;</a> with many
264
264
  contributions from the community. chef-shell was written by Daniel
265
265
  DeLeo.</p>
266
266
 
267
267
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
268
268
 
269
- <p> This manual page was written by Daniel DeLeo <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#58;&#100;&#97;&#x6e;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#100;&#97;&#110;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#111;&#109;</a>.
269
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#x64;&#x61;&#x6e;&#x40;&#x6f;&#112;&#x73;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#100;&#97;&#110;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#109;</a>.
270
270
  Permission is granted to copy, distribute and / or modify this
271
271
  document under the terms of the Apache 2.0 License.</p>
272
272
 
@@ -276,7 +276,7 @@ libraries.</p>
276
276
 
277
277
 
278
278
  <ol class='man-decor man-foot man foot'>
279
- <li class='tl'>Chef 11.8.2</li>
279
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
280
280
  <li class='tc'>December 2013</li>
281
281
  <li class='tr'>chef-shell(1)</li>
282
282
  </ol>
@@ -164,9 +164,9 @@ http://wiki.opscode.com/display/chef/Home.</p>
164
164
 
165
165
  <h2 id="AUTHOR">AUTHOR</h2>
166
166
 
167
- <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#x73;&#112;&#99;&#x6f;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#64;&#111;&#115;&#112;&#x63;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#109;</a> of Opscode
167
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#100;&#97;&#109;&#64;&#111;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#111;&#109;</a> of Opscode
168
168
  (http://www.opscode.com), with contributions from the community. This
169
- manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#x73;&#x68;&#x75;&#x61;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#x75;&#97;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;</a> with
169
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#117;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#x2e;&#99;&#111;&#x6d;</a> with
170
170
  help2man. Permission is granted to copy, distribute and / or modify
171
171
  this document under the terms of the Apache 2.0 License.</p>
172
172
 
@@ -175,7 +175,7 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
175
175
 
176
176
 
177
177
  <ol class='man-decor man-foot man foot'>
178
- <li class='tl'>Chef 11.8.2</li>
178
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
179
179
  <li class='tc'>December 2013</li>
180
180
  <li class='tr'>chef-solo(8)</li>
181
181
  </ol>
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
5
  <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
- <title>chef-solr(8) - Runs as Chef's search server</title>
6
+ <title>chef-solr(8) - Runs as Chef&#39;s search server</title>
7
7
  <style type='text/css' media='all'>
8
8
  /* style: man */
9
9
  body#manpage {margin:0}
@@ -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="&#109;&#x61;&#x69;&#x6c;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#x73;&#112;&#99;&#x6f;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#64;&#111;&#115;&#112;&#x63;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#109;</a> of Opscode
147
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#97;&#100;&#97;&#109;&#64;&#111;&#115;&#x70;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#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;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#x73;&#x68;&#x75;&#x61;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#x75;&#97;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;</a> with
149
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#117;&#x61;&#64;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#101;&#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,7 +155,7 @@ 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 11.8.2</li>
158
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
159
159
  <li class='tc'>December 2013</li>
160
160
  <li class='tr'>chef-solr(8)</li>
161
161
  </ol>
@@ -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;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
221
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;</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;&#x69;&#108;&#116;&#111;&#58;&#106;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#64;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#99;&#x6f;&#109;</a>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#x6f;&#x3a;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#101;&#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,7 +231,7 @@ to other users via the process list using tools such as <span class="man-ref">ps
231
231
 
232
232
 
233
233
  <ol class='man-decor man-foot man foot'>
234
- <li class='tl'>Chef 11.8.2</li>
234
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
235
235
  <li class='tc'>December 2013</li>
236
236
  <li class='tr'>knife-bootstrap(1)</li>
237
237
  </ol>
@@ -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;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#x64;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#97;&#109;&#x40;&#111;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
199
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;</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;&#97;&#x69;&#108;&#116;&#111;&#58;&#106;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#64;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#99;&#x6f;&#109;</a>.
203
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#x6f;&#x3a;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#101;&#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,7 +209,7 @@ setting up a host for management with Chef.</p>
209
209
 
210
210
 
211
211
  <ol class='man-decor man-foot man foot'>
212
- <li class='tl'>Chef 11.8.2</li>
212
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
213
213
  <li class='tc'>December 2013</li>
214
214
  <li class='tr'>knife-client(1)</li>
215
215
  </ol>
@@ -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;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
150
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
151
151
 
152
152
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
153
153
 
154
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
154
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#x6f;&#x3a;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;</a>.
155
155
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
156
156
 
157
157
  <h2 id="CHEF">CHEF</h2>
@@ -160,7 +160,7 @@ may need to modify that setting after copying to a remote host.</p></li>
160
160
 
161
161
 
162
162
  <ol class='man-decor man-foot man foot'>
163
- <li class='tl'>Chef 11.8.2</li>
163
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
164
164
  <li class='tc'>December 2013</li>
165
165
  <li class='tr'>knife-configure(1)</li>
166
166
  </ol>
@@ -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;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
221
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#58;&#97;&#x64;&#x61;&#109;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;</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="&#x6d;&#x61;&#x69;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#x6f;&#x3a;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#101;&#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,7 +231,7 @@ configuration file.</p>
231
231
 
232
232
 
233
233
  <ol class='man-decor man-foot man foot'>
234
- <li class='tl'>Chef 11.8.2</li>
234
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
235
235
  <li class='tc'>December 2013</li>
236
236
  <li class='tr'>knife-cookbook-site(1)</li>
237
237
  </ol>
@@ -358,11 +358,11 @@ cookbook.</p>
358
358
 
359
359
  <h2 id="AUTHOR">AUTHOR</h2>
360
360
 
361
- <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
361
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
362
362
 
363
363
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
364
364
 
365
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
365
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#x6f;&#115;&#104;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#111;&#115;&#104;&#117;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;</a>.
366
366
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
367
367
 
368
368
  <h2 id="CHEF">CHEF</h2>
@@ -371,7 +371,7 @@ cookbook.</p>
371
371
 
372
372
 
373
373
  <ol class='man-decor man-foot man foot'>
374
- <li class='tl'>Chef 11.8.2</li>
374
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
375
375
  <li class='tc'>December 2013</li>
376
376
  <li class='tr'>knife-cookbook(1)</li>
377
377
  </ol>
@@ -212,11 +212,11 @@ encryption keys.</p>
212
212
 
213
213
  <h2 id="AUTHOR">AUTHOR</h2>
214
214
 
215
- <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
215
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
216
216
 
217
217
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
218
218
 
219
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
219
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#x6f;&#115;&#104;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#111;&#115;&#104;&#117;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;</a>.
220
220
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
221
221
 
222
222
  <h2 id="CHEF">CHEF</h2>
@@ -225,7 +225,7 @@ encryption keys.</p>
225
225
 
226
226
 
227
227
  <ol class='man-decor man-foot man foot'>
228
- <li class='tl'>Chef 11.8.2</li>
228
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
229
229
  <li class='tc'>December 2013</li>
230
230
  <li class='tr'>knife-data-bag(1)</li>
231
231
  </ol>
@@ -242,11 +242,11 @@ override_attributes "aws_s3_bucket" =&gt; "production"
242
242
 
243
243
  <h2 id="AUTHOR">AUTHOR</h2>
244
244
 
245
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
245
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#x6d;</a> with many contributions from the community.</p>
246
246
 
247
247
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
248
248
 
249
- <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#100;&#x61;&#x6e;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#100;&#97;&#x6e;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a>.
249
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x64;&#x61;&#110;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x64;&#97;&#110;&#64;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;</a>.
250
250
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
251
251
 
252
252
  <h2 id="CHEF">CHEF</h2>
@@ -255,7 +255,7 @@ override_attributes "aws_s3_bucket" =&gt; "production"
255
255
 
256
256
 
257
257
  <ol class='man-decor man-foot man foot'>
258
- <li class='tl'>Chef 11.8.2</li>
258
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
259
259
  <li class='tc'>December 2013</li>
260
260
  <li class='tr'>knife-environment(1)</li>
261
261
  </ol>
@@ -111,11 +111,11 @@ description of the commands available.</p>
111
111
 
112
112
  <h2 id="AUTHOR">AUTHOR</h2>
113
113
 
114
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
114
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#46;&#99;&#111;&#x6d;</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="&#x6d;&#97;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#x73;&#104;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;</a>.
118
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x6a;&#x6f;&#115;&#104;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#111;&#115;&#104;&#117;&#97;&#64;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;</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,7 +124,7 @@ description of the commands available.</p>
124
124
 
125
125
 
126
126
  <ol class='man-decor man-foot man foot'>
127
- <li class='tl'>Chef 11.8.2</li>
127
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
128
128
  <li class='tc'>December 2013</li>
129
129
  <li class='tr'>knife-exec(1)</li>
130
130
  </ol>
@@ -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="&#x6d;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
105
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#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="&#x6d;&#97;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#x73;&#104;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;</a>.
109
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#106;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#117;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#100;&#x65;&#46;&#x63;&#111;&#109;</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,7 +115,7 @@ time for all objects to be indexed and available for search.</p>
115
115
 
116
116
 
117
117
  <ol class='man-decor man-foot man foot'>
118
- <li class='tl'>Chef 11.8.2</li>
118
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
119
119
  <li class='tc'>December 2013</li>
120
120
  <li class='tr'>knife-index(1)</li>
121
121
  </ol>
@@ -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="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#100;&#x61;&#x6d;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
230
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#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;&#105;&#x6c;&#116;&#x6f;&#58;&#106;&#x6f;&#x73;&#104;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#115;&#x68;&#x75;&#x61;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</a>.
234
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#106;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#117;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#100;&#x65;&#46;&#x63;&#111;&#109;</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,7 +240,7 @@ 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 11.8.2</li>
243
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
244
244
  <li class='tc'>December 2013</li>
245
245
  <li class='tr'>knife-node(1)</li>
246
246
  </ol>
@@ -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="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#97;&#100;&#x61;&#x6d;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
180
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#x6d;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#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;&#105;&#x6c;&#116;&#x6f;&#58;&#106;&#x6f;&#x73;&#104;&#117;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#106;&#x6f;&#115;&#x68;&#x75;&#x61;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;</a>.
184
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#106;&#111;&#x73;&#x68;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#117;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#100;&#x65;&#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,7 +190,7 @@ run_list.</p>
190
190
 
191
191
 
192
192
  <ol class='man-decor man-foot man foot'>
193
- <li class='tl'>Chef 11.8.2</li>
193
+ <li class='tl'>Chef 11.10.0.alpha.1</li>
194
194
  <li class='tc'>December 2013</li>
195
195
  <li class='tr'>knife-role(1)</li>
196
196
  </ol>