chef 0.10.8 → 0.10.10.beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (197) hide show
  1. data/distro/arch/etc/rc.d/chef-client +15 -1
  2. data/distro/common/html/chef-client.8.html +4 -4
  3. data/distro/common/html/chef-expander.8.html +4 -4
  4. data/distro/common/html/chef-expanderctl.8.html +4 -4
  5. data/distro/common/html/chef-server-webui.8.html +4 -4
  6. data/distro/common/html/chef-server.8.html +4 -4
  7. data/distro/common/html/chef-solo.8.html +4 -4
  8. data/distro/common/html/chef-solr.8.html +4 -4
  9. data/distro/common/html/knife-bootstrap.1.html +6 -10
  10. data/distro/common/html/knife-client.1.html +4 -4
  11. data/distro/common/html/knife-configure.1.html +4 -4
  12. data/distro/common/html/knife-cookbook-site.1.html +6 -6
  13. data/distro/common/html/knife-cookbook.1.html +4 -4
  14. data/distro/common/html/knife-data-bag.1.html +4 -4
  15. data/distro/common/html/knife-environment.1.html +4 -4
  16. data/distro/common/html/knife-exec.1.html +4 -4
  17. data/distro/common/html/knife-index.1.html +4 -4
  18. data/distro/common/html/knife-node.1.html +5 -5
  19. data/distro/common/html/knife-role.1.html +4 -4
  20. data/distro/common/html/knife-search.1.html +4 -4
  21. data/distro/common/html/knife-ssh.1.html +5 -6
  22. data/distro/common/html/knife-status.1.html +4 -4
  23. data/distro/common/html/knife-tag.1.html +4 -4
  24. data/distro/common/html/knife.1.html +7 -8
  25. data/distro/common/html/shef.1.html +4 -4
  26. data/distro/common/man/man1/knife-bootstrap.1 +4 -4
  27. data/distro/common/man/man1/knife-client.1 +1 -1
  28. data/distro/common/man/man1/knife-configure.1 +1 -1
  29. data/distro/common/man/man1/knife-cookbook-site.1 +4 -4
  30. data/distro/common/man/man1/knife-cookbook.1 +1 -1
  31. data/distro/common/man/man1/knife-data-bag.1 +1 -1
  32. data/distro/common/man/man1/knife-environment.1 +1 -1
  33. data/distro/common/man/man1/knife-exec.1 +1 -1
  34. data/distro/common/man/man1/knife-index.1 +1 -1
  35. data/distro/common/man/man1/knife-node.1 +2 -2
  36. data/distro/common/man/man1/knife-role.1 +1 -1
  37. data/distro/common/man/man1/knife-search.1 +1 -1
  38. data/distro/common/man/man1/knife-ssh.1 +3 -7
  39. data/distro/common/man/man1/knife-status.1 +1 -1
  40. data/distro/common/man/man1/knife-tag.1 +1 -1
  41. data/distro/common/man/man1/knife.1 +5 -9
  42. data/distro/common/man/man1/shef.1 +1 -1
  43. data/distro/common/man/man8/chef-client.8 +1 -1
  44. data/distro/common/man/man8/chef-expander.8 +1 -1
  45. data/distro/common/man/man8/chef-expanderctl.8 +1 -1
  46. data/distro/common/man/man8/chef-server-webui.8 +1 -1
  47. data/distro/common/man/man8/chef-server.8 +1 -1
  48. data/distro/common/man/man8/chef-solo.8 +1 -1
  49. data/distro/common/man/man8/chef-solr.8 +1 -1
  50. data/distro/common/markdown/man1/knife-bootstrap.mkd +3 -7
  51. data/distro/common/markdown/man1/knife-cookbook-site.mkd +3 -3
  52. data/distro/common/markdown/man1/knife-node.mkd +2 -2
  53. data/distro/common/markdown/man1/knife-ssh.mkd +2 -5
  54. data/distro/common/markdown/man1/knife.mkd +7 -9
  55. data/distro/debian/etc/init.d/chef-client +22 -1
  56. data/distro/redhat/etc/init.d/chef-client +12 -1
  57. data/distro/windows/service_manager.rb +164 -0
  58. data/lib/chef/application.rb +12 -6
  59. data/lib/chef/application/client.rb +4 -3
  60. data/lib/chef/application/knife.rb +7 -12
  61. data/lib/chef/application/solo.rb +2 -1
  62. data/lib/chef/application/windows_service.rb +224 -0
  63. data/lib/chef/checksum_cache.rb +1 -0
  64. data/lib/chef/client.rb +3 -16
  65. data/lib/chef/config.rb +42 -13
  66. data/lib/chef/cookbook/metadata.rb +1 -1
  67. data/lib/chef/cookbook/syntax_check.rb +2 -2
  68. data/lib/chef/cookbook_version.rb +5 -0
  69. data/lib/chef/daemon.rb +1 -1
  70. data/lib/chef/exceptions.rb +7 -1
  71. data/lib/chef/file_access_control.rb +13 -87
  72. data/lib/chef/file_access_control/unix.rb +119 -0
  73. data/lib/chef/file_access_control/windows.rb +257 -0
  74. data/lib/chef/handler/json_file.rb +7 -1
  75. data/lib/chef/knife.rb +10 -16
  76. data/lib/chef/knife/bootstrap.rb +15 -8
  77. data/lib/chef/knife/bootstrap/centos5-gems.erb +1 -1
  78. data/lib/chef/knife/bootstrap/chef-full.erb +59 -0
  79. data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +1 -0
  80. data/lib/chef/knife/configure.rb +2 -2
  81. data/lib/chef/knife/cookbook_site_download.rb +60 -21
  82. data/lib/chef/knife/cookbook_site_install.rb +16 -21
  83. data/lib/chef/knife/cookbook_upload.rb +77 -48
  84. data/lib/chef/knife/core/bootstrap_context.rb +3 -1
  85. data/lib/chef/knife/core/cookbook_scm_repo.rb +1 -1
  86. data/lib/chef/knife/core/node_editor.rb +1 -1
  87. data/lib/chef/knife/core/subcommand_loader.rb +1 -1
  88. data/lib/chef/knife/core/ui.rb +3 -2
  89. data/lib/chef/knife/help_topics.rb +1 -1
  90. data/lib/chef/knife/node_run_list_add.rb +14 -6
  91. data/lib/chef/knife/node_run_list_remove.rb +3 -3
  92. data/lib/chef/knife/ssh.rb +32 -13
  93. data/lib/chef/mash.rb +14 -0
  94. data/lib/chef/mixin/command.rb +1 -0
  95. data/lib/chef/mixin/command/unix.rb +5 -0
  96. data/lib/chef/mixin/convert_to_class_name.rb +2 -0
  97. data/lib/chef/mixin/deep_merge.rb +40 -18
  98. data/lib/chef/mixin/enforce_ownership_and_permissions.rb +39 -0
  99. data/lib/chef/mixin/language.rb +89 -3
  100. data/lib/chef/mixin/language_include_recipe.rb +8 -4
  101. data/lib/chef/mixin/path_sanity.rb +67 -0
  102. data/lib/chef/mixin/recipe_definition_dsl_core.rb +19 -11
  103. data/lib/chef/mixin/securable.rb +152 -0
  104. data/lib/chef/mixin/shell_out.rb +1 -1
  105. data/lib/chef/mixin/template.rb +8 -3
  106. data/lib/chef/mixins.rb +3 -0
  107. data/lib/chef/monkey_patches/moneta.rb +50 -0
  108. data/lib/chef/monkey_patches/string.rb +1 -1
  109. data/lib/chef/node.rb +2 -1
  110. data/lib/chef/platform.rb +34 -0
  111. data/lib/chef/provider.rb +23 -21
  112. data/lib/chef/provider/cron.rb +17 -12
  113. data/lib/chef/provider/cron/solaris.rb +6 -18
  114. data/lib/chef/provider/deploy.rb +14 -15
  115. data/lib/chef/provider/deploy/timestamped.rb +0 -1
  116. data/lib/chef/provider/directory.rb +1 -3
  117. data/lib/chef/provider/execute.rb +2 -2
  118. data/lib/chef/provider/file.rb +1 -75
  119. data/lib/chef/provider/git.rb +11 -9
  120. data/lib/chef/provider/group/gpasswd.rb +14 -9
  121. data/lib/chef/provider/link.rb +28 -59
  122. data/lib/chef/provider/mdadm.rb +2 -2
  123. data/lib/chef/provider/mount/mount.rb +1 -1
  124. data/lib/chef/provider/package.rb +10 -6
  125. data/lib/chef/provider/package/apt.rb +3 -1
  126. data/lib/chef/provider/package/dpkg.rb +1 -1
  127. data/lib/chef/provider/package/portage.rb +6 -3
  128. data/lib/chef/provider/package/rubygems.rb +75 -6
  129. data/lib/chef/provider/package/smartos.rb +84 -0
  130. data/lib/chef/provider/package/yum-dump.py +3 -2
  131. data/lib/chef/provider/package/yum.rb +51 -10
  132. data/lib/chef/provider/remote_directory.rb +24 -3
  133. data/lib/chef/provider/remote_file.rb +0 -6
  134. data/lib/chef/provider/route.rb +3 -3
  135. data/lib/chef/provider/service/debian.rb +2 -2
  136. data/lib/chef/provider/service/freebsd.rb +1 -1
  137. data/lib/chef/provider/service/macosx.rb +125 -0
  138. data/lib/chef/provider/service/windows.rb +5 -1
  139. data/lib/chef/provider/subversion.rb +10 -7
  140. data/lib/chef/providers.rb +3 -0
  141. data/lib/chef/resource.rb +181 -87
  142. data/lib/chef/resource/apt_package.rb +10 -1
  143. data/lib/chef/resource/chef_gem.rb +53 -0
  144. data/lib/chef/resource/conditional.rb +3 -0
  145. data/lib/chef/resource/cookbook_file.rb +12 -6
  146. data/lib/chef/resource/cron.rb +9 -0
  147. data/lib/chef/resource/directory.rb +14 -31
  148. data/lib/chef/resource/execute.rb +11 -9
  149. data/lib/chef/resource/file.rb +9 -33
  150. data/lib/chef/resource/link.rb +13 -8
  151. data/lib/chef/resource/mdadm.rb +10 -1
  152. data/lib/chef/resource/remote_directory.rb +13 -2
  153. data/lib/chef/resource/remote_file.rb +14 -7
  154. data/lib/chef/resource/smartos_package.rb +36 -0
  155. data/lib/chef/resource/template.rb +12 -5
  156. data/lib/chef/resource_platform_map.rb +153 -0
  157. data/lib/chef/resources.rb +2 -0
  158. data/lib/chef/rest.rb +55 -10
  159. data/lib/chef/rest/auth_credentials.rb +1 -0
  160. data/lib/chef/rest/rest_request.rb +24 -8
  161. data/lib/chef/role.rb +8 -2
  162. data/lib/chef/run_list.rb +1 -1
  163. data/lib/chef/run_list/run_list_expansion.rb +2 -2
  164. data/lib/chef/run_list/run_list_item.rb +7 -0
  165. data/lib/chef/runner.rb +4 -0
  166. data/lib/chef/shef.rb +2 -2
  167. data/lib/chef/shef/shef_session.rb +4 -5
  168. data/lib/chef/shell_out.rb +2 -245
  169. data/lib/chef/util/file_edit.rb +99 -89
  170. data/lib/chef/version.rb +1 -1
  171. data/lib/chef/win32/api.rb +349 -0
  172. data/lib/chef/win32/api/error.rb +921 -0
  173. data/lib/chef/win32/api/file.rb +289 -0
  174. data/lib/chef/win32/api/memory.rb +105 -0
  175. data/lib/chef/win32/api/process.rb +40 -0
  176. data/lib/chef/win32/api/psapi.rb +51 -0
  177. data/lib/chef/win32/api/security.rb +341 -0
  178. data/lib/chef/win32/api/system.rb +192 -0
  179. data/lib/chef/win32/api/unicode.rb +178 -0
  180. data/lib/chef/win32/error.rb +73 -0
  181. data/lib/chef/win32/file.rb +117 -0
  182. data/lib/chef/win32/file/info.rb +100 -0
  183. data/lib/chef/win32/handle.rb +48 -0
  184. data/lib/chef/win32/memory.rb +101 -0
  185. data/lib/chef/win32/process.rb +84 -0
  186. data/lib/chef/win32/security.rb +489 -0
  187. data/lib/chef/win32/security/ace.rb +125 -0
  188. data/lib/chef/win32/security/acl.rb +101 -0
  189. data/lib/chef/win32/security/securable_object.rb +109 -0
  190. data/lib/chef/win32/security/security_descriptor.rb +93 -0
  191. data/lib/chef/win32/security/sid.rb +199 -0
  192. data/lib/chef/win32/security/token.rb +64 -0
  193. data/lib/chef/win32/unicode.rb +43 -0
  194. data/lib/chef/win32/version.rb +119 -0
  195. metadata +104 -158
  196. data/lib/chef/shell_out/unix.rb +0 -223
  197. data/lib/chef/shell_out/windows.rb +0 -588
@@ -67,10 +67,24 @@ case "$1" in
67
67
  sleep 3
68
68
  $0 start
69
69
  ;;
70
+
70
71
  status)
71
72
  stat_busy "Checking $daemon_name status";
72
73
  ck_status $daemon_name
73
74
  ;;
75
+
76
+ run)
77
+ stat_busy "Triggering new run of $daemon_name daemon"
78
+ PID=$(get_pid)
79
+ [ ! -z "$PID" ] && kill -SIGUSR1 $PID &> /dev/null
80
+ if [ $? -gt 0 ]; then
81
+ stat_fail
82
+ exit 1
83
+ else
84
+ stat_done
85
+ fi
86
+ ;;
87
+
74
88
  *)
75
- echo "usage: $) {start|stop|restart|status}"
89
+ echo "usage: $) {start|stop|restart|status|run}"
76
90
  esac
@@ -125,9 +125,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
125
125
 
126
126
  <h2 id="AUTHOR">AUTHOR</h2>
127
127
 
128
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;</a> of Opscode
128
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#115;&#112;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a> of Opscode
129
129
  (http://www.opscode.com), with contributions from the community. This
130
- manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#106;&#111;&#115;&#104;&#117;&#x61;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#117;&#97;&#64;&#111;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> with
130
+ manual page was written by Joshua Timberman <a href="&#109;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#106;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#104;&#x75;&#x61;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#101;&#46;&#x63;&#111;&#109;</a> with
131
131
  help2man. Permission is granted to copy, distribute and / or modify
132
132
  this document under the terms of the Apache 2.0 License.</p>
133
133
 
@@ -136,8 +136,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
136
136
 
137
137
 
138
138
  <ol class='man-decor man-foot man foot'>
139
- <li class='tl'>Chef 0.10.8</li>
140
- <li class='tc'>December 2011</li>
139
+ <li class='tl'>Chef 0.10.10.beta.1</li>
140
+ <li class='tc'>April 2012</li>
141
141
  <li class='tr'>chef-client(8)</li>
142
142
  </ol>
143
143
 
@@ -143,9 +143,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
143
143
 
144
144
  <h2 id="AUTHOR">AUTHOR</h2>
145
145
 
146
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;</a> of Opscode
146
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#115;&#112;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#64;&#111;&#x73;&#112;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#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="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#110;&#117;&#111;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#101;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#110;&#x75;&#111;&#64;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a>. Permission is
148
+ manual page was created by Nuo Yan <a href="&#109;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#110;&#117;&#111;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x6e;&#117;&#x6f;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#109;</a>. Permission is
149
149
  granted to copy, distribute and / or modify this document under the
150
150
  terms of the Apache 2.0 License.</p>
151
151
 
@@ -154,8 +154,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
154
154
 
155
155
 
156
156
  <ol class='man-decor man-foot man foot'>
157
- <li class='tl'>Chef 0.10.8</li>
158
- <li class='tc'>December 2011</li>
157
+ <li class='tl'>Chef 0.10.10.beta.1</li>
158
+ <li class='tc'>April 2012</li>
159
159
  <li class='tr'>chef-expander(8)</li>
160
160
  </ol>
161
161
 
@@ -125,9 +125,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
125
125
 
126
126
  <h2 id="AUTHOR">AUTHOR</h2>
127
127
 
128
- <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#x3a;&#x61;&#100;&#x61;&#x6d;&#64;&#111;&#x73;&#112;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#x6f;&#109;</a> of Opscode
128
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#x61;&#x64;&#97;&#109;&#x40;&#111;&#115;&#112;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#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="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#110;&#x75;&#x6f;&#x40;&#x6f;&#112;&#115;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#110;&#117;&#x6f;&#64;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#x6d;</a>. Permission is
130
+ manual page was created by Nuo Yan <a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#58;&#110;&#117;&#x6f;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x6e;&#117;&#111;&#x40;&#x6f;&#112;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a>. Permission is
131
131
  granted to copy, distribute and / or modify this document under the
132
132
  terms of the Apache 2.0 License.</p>
133
133
 
@@ -136,8 +136,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
136
136
 
137
137
 
138
138
  <ol class='man-decor man-foot man foot'>
139
- <li class='tl'>Chef 0.10.8</li>
140
- <li class='tc'>December 2011</li>
139
+ <li class='tl'>Chef 0.10.10.beta.1</li>
140
+ <li class='tc'>April 2012</li>
141
141
  <li class='tr'>chef-expanderctl(8)</li>
142
142
  </ol>
143
143
 
@@ -163,9 +163,9 @@ is located on the Chef wiki, http://wiki.opscode.com/display/chef/Home.</p>
163
163
 
164
164
  <h2 id="AUTHOR">AUTHOR</h2>
165
165
 
166
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a> of Opscode
166
+ <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#x74;&#111;&#x3a;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x73;&#112;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#64;&#x6f;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
167
167
  (http://www.opscode.com), with contributions from the community. This
168
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#x6f;&#x3a;&#106;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#x75;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#111;&#x6d;</a> with
168
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a> with
169
169
  help2man for the Debian project (but may be used by others). Permission
170
170
  is granted to copy, distribute and / or modify this document under the
171
171
  terms of the Apache 2.0 License.</p>
@@ -175,8 +175,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
175
175
 
176
176
 
177
177
  <ol class='man-decor man-foot man foot'>
178
- <li class='tl'>Chef 0.10.8</li>
179
- <li class='tc'>December 2011</li>
178
+ <li class='tl'>Chef 0.10.10.beta.1</li>
179
+ <li class='tc'>April 2012</li>
180
180
  <li class='tr'>chef-server-webui(8)</li>
181
181
  </ol>
182
182
 
@@ -161,9 +161,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
161
161
 
162
162
  <h2 id="AUTHOR">AUTHOR</h2>
163
163
 
164
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;</a> of Opscode
164
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#108;&#116;&#x6f;&#x3a;&#97;&#100;&#x61;&#109;&#64;&#111;&#115;&#112;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#97;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#99;&#111;&#100;&#101;&#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="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#106;&#111;&#115;&#104;&#117;&#x61;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#117;&#97;&#64;&#111;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> with
166
+ manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#111;&#x73;&#104;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</a> with
167
167
  help2man. Permission is granted to copy, distribute and / or modify
168
168
  this document under the terms of the Apache 2.0 License.</p>
169
169
 
@@ -172,8 +172,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
172
172
 
173
173
 
174
174
  <ol class='man-decor man-foot man foot'>
175
- <li class='tl'>Chef 0.10.8</li>
176
- <li class='tc'>December 2011</li>
175
+ <li class='tl'>Chef 0.10.10.beta.1</li>
176
+ <li class='tc'>April 2012</li>
177
177
  <li class='tr'>chef-server(8)</li>
178
178
  </ol>
179
179
 
@@ -170,9 +170,9 @@ http://wiki.opscode.com/display/chef/Home.</p>
170
170
 
171
171
  <h2 id="AUTHOR">AUTHOR</h2>
172
172
 
173
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x73;&#x70;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x73;&#x70;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a> of Opscode
173
+ <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#108;&#x74;&#111;&#x3a;&#x61;&#x64;&#x61;&#x6d;&#64;&#x6f;&#x73;&#112;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#x6d;&#64;&#x6f;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#109;</a> of Opscode
174
174
  (http://www.opscode.com), with contributions from the community. This
175
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#x6f;&#x3a;&#106;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#x75;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#111;&#x6d;</a> with
175
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#106;&#111;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#97;&#64;&#x6f;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a> with
176
176
  help2man. Permission is granted to copy, distribute and / or modify
177
177
  this document under the terms of the Apache 2.0 License.</p>
178
178
 
@@ -181,8 +181,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
181
181
 
182
182
 
183
183
  <ol class='man-decor man-foot man foot'>
184
- <li class='tl'>Chef 0.10.8</li>
185
- <li class='tc'>December 2011</li>
184
+ <li class='tl'>Chef 0.10.10.beta.1</li>
185
+ <li class='tc'>April 2012</li>
186
186
  <li class='tr'>chef-solo(8)</li>
187
187
  </ol>
188
188
 
@@ -144,9 +144,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
144
144
 
145
145
  <h2 id="AUTHOR">AUTHOR</h2>
146
146
 
147
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#97;&#100;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#x63;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#x73;&#112;&#99;&#111;&#100;&#101;&#46;&#99;&#111;&#109;</a> of Opscode
147
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#x73;&#112;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#111;&#115;&#x70;&#x63;&#111;&#x64;&#101;&#x2e;&#99;&#111;&#109;</a> of Opscode
148
148
  (http://www.opscode.com), with contributions from the community. This
149
- manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#x3a;&#106;&#111;&#115;&#104;&#117;&#x61;&#x40;&#111;&#112;&#115;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#117;&#97;&#64;&#111;&#112;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a> with
149
+ manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#111;&#x3a;&#106;&#111;&#115;&#104;&#117;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#x73;&#104;&#x75;&#x61;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a> with
150
150
  help2man. Permission is granted to copy, distribute and / or modify
151
151
  this document under the terms of the Apache 2.0 License.</p>
152
152
 
@@ -155,8 +155,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
155
155
 
156
156
 
157
157
  <ol class='man-decor man-foot man foot'>
158
- <li class='tl'>Chef 0.10.8</li>
159
- <li class='tc'>December 2011</li>
158
+ <li class='tl'>Chef 0.10.10.beta.1</li>
159
+ <li class='tc'>April 2012</li>
160
160
  <li class='tr'>chef-solr(8)</li>
161
161
  </ol>
162
162
 
@@ -98,7 +98,7 @@
98
98
  <dt><code>--template-file TEMPLATE</code></dt><dd>Full path to location of template to use</dd>
99
99
  <dt class="flush"><code>--sudo</code></dt><dd>Execute the bootstrap via sudo</dd>
100
100
  <dt><code>-d</code>, <code>--distro DISTRO</code></dt><dd>Bootstrap a distro using a template</dd>
101
- <dt><code>--no-host-key-verify</code></dt><dd>Disable host key verification</dd>
101
+ <dt><code>--[no-]host-key-verify</code></dt><dd>Enable host key verification, which is the default behavior.</dd>
102
102
  </dl>
103
103
 
104
104
 
@@ -137,11 +137,7 @@ target node (FQDN). The following distros are supported:</p>
137
137
 
138
138
 
139
139
  <p>The gems installations will use RubyGems 1.3.6 and Chef installed as a
140
- gem. The apt installation will use the Opscode APT repository. The
141
- RubyGems installation requires installing gems with native extensions,
142
- so development related packages (ruby-dev, build-essential) are
143
- installed. These are not installed with the apt installation, as native
144
- extensions are already compiled in the required packages.</p>
140
+ gem. The apt installation will use the Opscode APT repository.</p>
145
141
 
146
142
  <p>In addition to handling the software installation, these bootstrap
147
143
  templates do the following:</p>
@@ -220,11 +216,11 @@ to other users via the process list using tools such as <span class="man-ref">ps
220
216
 
221
217
  <h2 id="AUTHOR">AUTHOR</h2>
222
218
 
223
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#97;&#100;&#x61;&#x6d;&#64;&#111;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#x40;&#111;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#x6d;</a> with many contributions from the community.</p>
219
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
224
220
 
225
221
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
226
222
 
227
- <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x6a;&#111;&#115;&#x68;&#x75;&#x61;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
223
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#108;&#116;&#111;&#x3a;&#x6a;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#106;&#111;&#x73;&#x68;&#117;&#x61;&#x40;&#111;&#112;&#115;&#99;&#111;&#x64;&#101;&#46;&#x63;&#x6f;&#x6d;</a>.
228
224
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
229
225
 
230
226
  <h2 id="CHEF">CHEF</h2>
@@ -233,8 +229,8 @@ to other users via the process list using tools such as <span class="man-ref">ps
233
229
 
234
230
 
235
231
  <ol class='man-decor man-foot man foot'>
236
- <li class='tl'>Chef 0.10.8</li>
237
- <li class='tc'>December 2011</li>
232
+ <li class='tl'>Chef 0.10.10.beta.1</li>
233
+ <li class='tc'>April 2012</li>
238
234
  <li class='tr'>knife-bootstrap(1)</li>
239
235
  </ol>
240
236
 
@@ -196,11 +196,11 @@ setting up a host for management with Chef.</p>
196
196
 
197
197
  <h2 id="AUTHOR">AUTHOR</h2>
198
198
 
199
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x61;&#x64;&#97;&#109;&#64;&#111;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#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;&#x6f;&#58;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#x6d;&#x40;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#109;</a> with many contributions from the community.</p>
200
200
 
201
201
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
202
202
 
203
- <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</a>.
203
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#x61;&#105;&#108;&#116;&#x6f;&#x3a;&#106;&#111;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#x65;&#46;&#99;&#x6f;&#109;</a>.
204
204
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
205
205
 
206
206
  <h2 id="CHEF">CHEF</h2>
@@ -209,8 +209,8 @@ setting up a host for management with Chef.</p>
209
209
 
210
210
 
211
211
  <ol class='man-decor man-foot man foot'>
212
- <li class='tl'>Chef 0.10.8</li>
213
- <li class='tc'>December 2011</li>
212
+ <li class='tl'>Chef 0.10.10.beta.1</li>
213
+ <li class='tc'>April 2012</li>
214
214
  <li class='tr'>knife-client(1)</li>
215
215
  </ol>
216
216
 
@@ -147,11 +147,11 @@ may need to modify that setting after copying to a remote host.</p></li>
147
147
 
148
148
  <h2 id="AUTHOR">AUTHOR</h2>
149
149
 
150
- <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#111;&#112;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
150
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#x3a;&#97;&#x64;&#97;&#109;&#x40;&#x6f;&#x70;&#x73;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#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="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a>.
154
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#58;&#x6a;&#111;&#115;&#104;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#104;&#x75;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;</a>.
155
155
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
156
156
 
157
157
  <h2 id="CHEF">CHEF</h2>
@@ -160,8 +160,8 @@ may need to modify that setting after copying to a remote host.</p></li>
160
160
 
161
161
 
162
162
  <ol class='man-decor man-foot man foot'>
163
- <li class='tl'>Chef 0.10.8</li>
164
- <li class='tc'>December 2011</li>
163
+ <li class='tl'>Chef 0.10.10.beta.1</li>
164
+ <li class='tc'>April 2012</li>
165
165
  <li class='tr'>knife-configure(1)</li>
166
166
  </ol>
167
167
 
@@ -101,7 +101,7 @@
101
101
  <p><strong>cookbook site install COOKBOOK [VERSION]</strong> <em>(options)</em></p>
102
102
 
103
103
  <dl>
104
- <dt><code>-D</code>, <code>--no-dependencies</code></dt><dd>Do not install dependencies automatically</dd>
104
+ <dt><code>-D</code>, <code>--skip-dependencies</code></dt><dd>Skip automatic installation of dependencies.</dd>
105
105
  <dt><code>-o</code>, <code>--cookbook-path PATH</code></dt><dd>Install cookbooks to PATH</dd>
106
106
  <dt><code>-B</code>, <code>--branch BRANCH</code></dt><dd>Default branch to work with [defaults to master]</dd>
107
107
  </dl>
@@ -127,7 +127,7 @@ changes as a separate patch. When an updated upstream version becomes
127
127
  available, you will be able to merge the upstream changes while
128
128
  maintaining your local modifications.</p>
129
129
 
130
- <p>Unless <em>-D</em> is specified, the process is applied recursively to all the
130
+ <p>Unless <em>--skip-dependencies</em> is specified, the process is applied recursively to all the
131
131
  cookbooks <em>COOKBOOK</em> depends on (via metadata <em>dependencies</em>).</p>
132
132
 
133
133
  <h2 id="DOWNLOAD">DOWNLOAD</h2>
@@ -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="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#97;&#100;&#x61;&#x6d;&#64;&#111;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#x40;&#111;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#x6f;&#x6d;</a> with many contributions from the community.</p>
221
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#x64;&#x61;&#109;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#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;&#x6c;&#x74;&#x6f;&#58;&#x6a;&#111;&#115;&#x68;&#x75;&#x61;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#x6d;</a>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#x3a;&#x6a;&#111;&#x73;&#x68;&#x75;&#97;&#x40;&#x6f;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#x73;&#x68;&#117;&#x61;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;</a>.
226
226
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
227
227
 
228
228
  <h2 id="CHEF">CHEF</h2>
@@ -231,8 +231,8 @@ configuration file.</p>
231
231
 
232
232
 
233
233
  <ol class='man-decor man-foot man foot'>
234
- <li class='tl'>Chef 0.10.8</li>
235
- <li class='tc'>December 2011</li>
234
+ <li class='tl'>Chef 0.10.10.beta.1</li>
235
+ <li class='tc'>April 2012</li>
236
236
  <li class='tr'>knife-cookbook-site(1)</li>
237
237
  </ol>
238
238
 
@@ -361,11 +361,11 @@ cookbook.</p>
361
361
 
362
362
  <h2 id="AUTHOR">AUTHOR</h2>
363
363
 
364
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#x74;&#x6f;&#x3a;&#x61;&#x64;&#x61;&#109;&#64;&#111;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#x2e;&#99;&#x6f;&#109;</a> with many contributions from the community.</p>
364
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#x6c;&#116;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#x40;&#111;&#x70;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
365
365
 
366
366
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
367
367
 
368
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#106;&#111;&#x73;&#104;&#x75;&#97;&#x40;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#115;&#104;&#x75;&#97;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#109;</a>.
368
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#x6c;&#x74;&#111;&#58;&#106;&#x6f;&#115;&#104;&#117;&#97;&#64;&#x6f;&#112;&#115;&#x63;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#x68;&#117;&#97;&#x40;&#111;&#112;&#115;&#x63;&#111;&#100;&#x65;&#46;&#99;&#x6f;&#109;</a>.
369
369
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
370
370
 
371
371
  <h2 id="CHEF">CHEF</h2>
@@ -374,8 +374,8 @@ cookbook.</p>
374
374
 
375
375
 
376
376
  <ol class='man-decor man-foot man foot'>
377
- <li class='tl'>Chef 0.10.8</li>
378
- <li class='tc'>December 2011</li>
377
+ <li class='tl'>Chef 0.10.10.beta.1</li>
378
+ <li class='tc'>April 2012</li>
379
379
  <li class='tr'>knife-cookbook(1)</li>
380
380
  </ol>
381
381
 
@@ -211,11 +211,11 @@ encryption keys.</p>
211
211
 
212
212
  <h2 id="AUTHOR">AUTHOR</h2>
213
213
 
214
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x61;&#x64;&#97;&#109;&#64;&#111;&#112;&#115;&#x63;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#100;&#97;&#109;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
214
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#x3a;&#97;&#x64;&#97;&#109;&#x40;&#x6f;&#x70;&#x73;&#99;&#111;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#97;&#109;&#64;&#x6f;&#112;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#x6d;</a> with many contributions from the community.</p>
215
215
 
216
216
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
217
217
 
218
- <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#x6c;&#116;&#x6f;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#x6f;&#x6d;</a>.
218
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#58;&#x6a;&#111;&#115;&#104;&#x75;&#x61;&#64;&#x6f;&#x70;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#111;&#x73;&#104;&#x75;&#97;&#64;&#x6f;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#109;</a>.
219
219
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
220
220
 
221
221
  <h2 id="CHEF">CHEF</h2>
@@ -224,8 +224,8 @@ encryption keys.</p>
224
224
 
225
225
 
226
226
  <ol class='man-decor man-foot man foot'>
227
- <li class='tl'>Chef 0.10.8</li>
228
- <li class='tc'>December 2011</li>
227
+ <li class='tl'>Chef 0.10.10.beta.1</li>
228
+ <li class='tc'>April 2012</li>
229
229
  <li class='tr'>knife-data-bag(1)</li>
230
230
  </ol>
231
231
 
@@ -244,11 +244,11 @@ override_attributes "aws_s3_bucket" =&gt; "production"
244
244
 
245
245
  <h2 id="AUTHOR">AUTHOR</h2>
246
246
 
247
- <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#111;&#112;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
247
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#112;&#x73;&#99;&#111;&#x64;&#x65;&#46;&#99;&#111;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#x40;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#x2e;&#99;&#x6f;&#x6d;</a> with many contributions from the community.</p>
248
248
 
249
249
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
250
250
 
251
- <p> This manual page was written by Daniel DeLeo <a href="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x64;&#97;&#x6e;&#x40;&#111;&#112;&#115;&#99;&#x6f;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#100;&#x61;&#110;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;</a>.
251
+ <p> This manual page was written by Daniel DeLeo <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#100;&#x61;&#110;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x64;&#x61;&#x6e;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#x2e;&#99;&#111;&#x6d;</a>.
252
252
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
253
253
 
254
254
  <h2 id="CHEF">CHEF</h2>
@@ -257,8 +257,8 @@ override_attributes "aws_s3_bucket" =&gt; "production"
257
257
 
258
258
 
259
259
  <ol class='man-decor man-foot man foot'>
260
- <li class='tl'>Chef 0.10.8</li>
261
- <li class='tc'>December 2011</li>
260
+ <li class='tl'>Chef 0.10.10.beta.1</li>
261
+ <li class='tc'>April 2012</li>
262
262
  <li class='tr'>knife-environment(1)</li>
263
263
  </ol>
264
264
 
@@ -111,11 +111,11 @@ commands available.</p>
111
111
 
112
112
  <h2 id="AUTHOR">AUTHOR</h2>
113
113
 
114
- <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#116;&#x6f;&#58;&#x61;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#101;&#x2e;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
114
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x61;&#x64;&#97;&#109;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#99;&#111;&#109;</a> with many contributions from the community.</p>
115
115
 
116
116
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
117
117
 
118
- <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#x6f;&#x3a;&#106;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#x65;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#x75;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#99;&#111;&#x6d;</a>.
118
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#x75;&#97;&#64;&#111;&#112;&#115;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#104;&#117;&#97;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;</a>.
119
119
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
120
120
 
121
121
  <h2 id="CHEF">CHEF</h2>
@@ -124,8 +124,8 @@ commands available.</p>
124
124
 
125
125
 
126
126
  <ol class='man-decor man-foot man foot'>
127
- <li class='tl'>Chef 0.10.8</li>
128
- <li class='tc'>December 2011</li>
127
+ <li class='tl'>Chef 0.10.10.beta.1</li>
128
+ <li class='tc'>April 2012</li>
129
129
  <li class='tr'>knife-exec(1)</li>
130
130
  </ol>
131
131
 
@@ -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;&#x61;&#x69;&#108;&#116;&#x6f;&#x3a;&#97;&#x64;&#x61;&#109;&#64;&#111;&#112;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#64;&#111;&#x70;&#x73;&#99;&#111;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a> with many contributions from the community.</p>
105
+ <p> Chef was written by Adam Jacob <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#x6f;&#x70;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x61;&#x64;&#97;&#109;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#100;&#101;&#x2e;&#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="&#109;&#97;&#x69;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#x73;&#x68;&#117;&#97;&#64;&#111;&#x70;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#109;</a>.
109
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6a;&#111;&#x73;&#104;&#x75;&#97;&#64;&#111;&#112;&#115;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#104;&#117;&#97;&#x40;&#111;&#112;&#115;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#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 0.10.8</li>
119
- <li class='tc'>December 2011</li>
118
+ <li class='tl'>Chef 0.10.10.beta.1</li>
119
+ <li class='tc'>April 2012</li>
120
120
  <li class='tr'>knife-index(1)</li>
121
121
  </ol>
122
122