chef 11.10.0.alpha.1-x86-mingw32 → 11.10.0.rc.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. data/README.md +57 -36
  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-shell.1.html +4 -4
  8. data/distro/common/html/chef-solo.8.html +4 -4
  9. data/distro/common/html/chef-solr.8.html +5 -5
  10. data/distro/common/html/knife-bootstrap.1.html +4 -4
  11. data/distro/common/html/knife-client.1.html +4 -4
  12. data/distro/common/html/knife-configure.1.html +4 -4
  13. data/distro/common/html/knife-cookbook-site.1.html +4 -4
  14. data/distro/common/html/knife-cookbook.1.html +4 -4
  15. data/distro/common/html/knife-data-bag.1.html +4 -4
  16. data/distro/common/html/knife-environment.1.html +4 -4
  17. data/distro/common/html/knife-exec.1.html +4 -4
  18. data/distro/common/html/knife-index.1.html +4 -4
  19. data/distro/common/html/knife-node.1.html +4 -4
  20. data/distro/common/html/knife-role.1.html +4 -4
  21. data/distro/common/html/knife-search.1.html +4 -4
  22. data/distro/common/html/knife-ssh.1.html +4 -4
  23. data/distro/common/html/knife-status.1.html +4 -4
  24. data/distro/common/html/knife-tag.1.html +4 -4
  25. data/distro/common/html/knife.1.html +4 -4
  26. data/distro/common/man/man1/knife-bootstrap.1 +58 -64
  27. data/distro/common/man/man1/knife-client.1 +19 -22
  28. data/distro/common/man/man1/knife-configure.1 +37 -46
  29. data/distro/common/man/man1/knife-cookbook-site.1 +14 -17
  30. data/distro/common/man/man1/knife-cookbook.1 +15 -18
  31. data/distro/common/man/man1/knife-data-bag.1 +14 -17
  32. data/distro/common/man/man1/knife-delete.1 +38 -47
  33. data/distro/common/man/man1/knife-deps.1 +39 -48
  34. data/distro/common/man/man1/knife-diff.1 +43 -52
  35. data/distro/common/man/man1/knife-download.1 +47 -53
  36. data/distro/common/man/man1/knife-edit.1 +32 -41
  37. data/distro/common/man/man1/knife-environment.1 +14 -17
  38. data/distro/common/man/man1/knife-exec.1 +52 -61
  39. data/distro/common/man/man1/knife-index-rebuild.1 +1 -61
  40. data/distro/common/man/man1/knife-list.1 +47 -59
  41. data/distro/common/man/man1/knife-node.1 +15 -18
  42. data/distro/common/man/man1/knife-raw.1 +28 -46
  43. data/distro/common/man/man1/knife-recipe-list.1 +1 -61
  44. data/distro/common/man/man1/knife-role.1 +19 -25
  45. data/distro/common/man/man1/knife-search.1 +53 -62
  46. data/distro/common/man/man1/knife-show.1 +36 -28
  47. data/distro/common/man/man1/knife-ssh.1 +55 -61
  48. data/distro/common/man/man1/knife-status.1 +34 -43
  49. data/distro/common/man/man1/knife-tag.1 +14 -17
  50. data/distro/common/man/man1/knife-upload.1 +47 -56
  51. data/distro/common/man/man1/knife-user.1 +17 -20
  52. data/distro/common/man/man1/knife-xargs.1 +60 -69
  53. data/lib/chef/application.rb +3 -1
  54. data/lib/chef/application/windows_service.rb +0 -1
  55. data/lib/chef/client.rb +41 -152
  56. data/lib/chef/config.rb +19 -23
  57. data/lib/chef/data_bag.rb +1 -1
  58. data/lib/chef/data_bag_item.rb +1 -1
  59. data/lib/chef/exceptions.rb +8 -0
  60. data/lib/chef/formatters/doc.rb +15 -0
  61. data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +2 -1
  62. data/lib/chef/http.rb +18 -8
  63. data/lib/chef/http/authenticator.rb +4 -0
  64. data/lib/chef/http/cookie_manager.rb +3 -0
  65. data/lib/chef/http/decompressor.rb +4 -0
  66. data/lib/chef/http/json_input.rb +4 -0
  67. data/lib/chef/http/json_output.rb +4 -0
  68. data/lib/chef/http/validate_content_length.rb +94 -0
  69. data/lib/chef/knife.rb +0 -1
  70. data/lib/chef/knife/configure.rb +6 -6
  71. data/lib/chef/knife/cookbook_create.rb +2 -2
  72. data/lib/chef/knife/core/subcommand_loader.rb +49 -3
  73. data/lib/chef/knife/ssh.rb +34 -4
  74. data/lib/chef/mixin/path_sanity.rb +1 -0
  75. data/lib/chef/monologger.rb +1 -2
  76. data/lib/chef/node.rb +7 -0
  77. data/lib/chef/policy_builder.rb +49 -0
  78. data/lib/chef/policy_builder/expand_node_object.rb +230 -0
  79. data/lib/chef/policy_builder/policyfile.rb +338 -0
  80. data/lib/chef/provider/file.rb +15 -5
  81. data/lib/chef/provider/group.rb +6 -2
  82. data/lib/chef/provider/group/windows.rb +12 -2
  83. data/lib/chef/provider/http_request.rb +3 -2
  84. data/lib/chef/provider/package.rb +1 -0
  85. data/lib/chef/provider/package/aix.rb +1 -1
  86. data/lib/chef/provider/service/debian.rb +7 -2
  87. data/lib/chef/resource/file.rb +8 -1
  88. data/lib/chef/resource/package.rb +9 -0
  89. data/lib/chef/resource/service.rb +0 -1
  90. data/lib/chef/rest.rb +2 -0
  91. data/lib/chef/run_context.rb +1 -1
  92. data/lib/chef/util/file_edit.rb +1 -1
  93. data/lib/chef/util/windows/net_group.rb +7 -6
  94. data/lib/chef/version.rb +1 -1
  95. data/lib/chef/win32/version.rb +31 -18
  96. data/spec/data/cookbooks/preseed/templates/default/preseed-template-variables.seed +1 -0
  97. data/spec/functional/resource/file_spec.rb +0 -1
  98. data/spec/functional/resource/group_spec.rb +96 -16
  99. data/spec/functional/resource/package_spec.rb +17 -0
  100. data/spec/functional/resource/user_spec.rb +2 -2
  101. data/spec/functional/win32/versions_spec.rb +39 -0
  102. data/spec/integration/client/client_spec.rb +27 -28
  103. data/spec/spec_helper.rb +2 -0
  104. data/spec/support/platform_helpers.rb +7 -1
  105. data/spec/support/shared/functional/file_resource.rb +83 -43
  106. data/spec/unit/application_spec.rb +7 -5
  107. data/spec/unit/client_spec.rb +10 -3
  108. data/spec/unit/config_spec.rb +0 -30
  109. data/spec/unit/cookbook_spec.rb +1 -0
  110. data/spec/unit/data_bag_item_spec.rb +8 -0
  111. data/spec/unit/data_bag_spec.rb +6 -0
  112. data/spec/unit/http_spec.rb +48 -0
  113. data/spec/unit/knife/core/subcommand_loader_spec.rb +77 -1
  114. data/spec/unit/knife/ssh_spec.rb +107 -0
  115. data/spec/unit/mixin/path_sanity_spec.rb +6 -0
  116. data/spec/unit/mixin/securable_spec.rb +77 -3
  117. data/spec/unit/monologger_spec.rb +45 -0
  118. data/spec/unit/node_spec.rb +16 -0
  119. data/spec/unit/policy_builder/expand_node_object_spec.rb +320 -0
  120. data/spec/unit/policy_builder/policyfile_spec.rb +399 -0
  121. data/spec/unit/policy_builder_spec.rb +26 -0
  122. data/spec/unit/provider/deploy_spec.rb +3 -0
  123. data/spec/unit/provider/group/windows_spec.rb +1 -0
  124. data/spec/unit/provider/http_request_spec.rb +23 -1
  125. data/spec/unit/provider/service/debian_service_spec.rb +50 -19
  126. data/spec/unit/recipe_spec.rb +4 -0
  127. data/spec/unit/resource/package_spec.rb +5 -0
  128. data/spec/unit/rest_spec.rb +375 -278
  129. data/spec/unit/run_context_spec.rb +4 -0
  130. metadata +120 -75
  131. checksums.yaml +0 -7
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Chef
2
2
 
3
+ Want to try Chef? Get started with [learnchef](https://learnchef.opscode.com)
4
+
3
5
  * Documentation: [http://docs.opscode.com](http://docs.opscode.com)
4
6
  * Source: [http://github.com/opscode/chef/tree/master](http://github.com/opscode/chef/tree/master)
5
7
  * Tickets/Issues: [http://tickets.opscode.com](http://tickets.opscode.com)
@@ -9,62 +11,81 @@
9
11
  Chef is a configuration management tool designed to bring automation to your
10
12
  entire infrastructure.
11
13
 
12
- The [Chef Wiki](http://wiki.opscode.com/display/chef/Home) is the definitive
13
- source of user documentation.
14
+ This README focuses on developers who want to modify Chef source code.
15
+ If you just want to use Chef, check out these resources:
14
16
 
15
- This README focuses on developers who want to modify Chef source code. For
16
- users who just want to run the latest and greatest Chef development version in
17
- their environment, see the
18
- [Installing Chef from HEAD](http://wiki.opscode.com/display/chef/Installing+Chef+from+HEAD)
19
- page on the wiki.
17
+ * [learnchef](https://learnchef.opscode.com): Getting started guide
18
+ * [http://docs.opscode.com](http://docs.opscode.com): Comprehensive User Docs
19
+ * [Installer Downloads](http://www.getchef.com/chef/install/): Install Chef as a complete package
20
20
 
21
- ## Contributing/Development
21
+ ## Installing From Git
22
22
 
23
- Before working on the code, if you plan to contribute your changes, you need to
24
- read the
25
- [Opscode Contributing document](http://wiki.opscode.com/display/chef/How+to+Contribute).
23
+ **NOTE:** Unless you have a specific reason to install from source (to
24
+ try a new feature, contribute a patch, or run chef on an OS for which no
25
+ package is available), you should head to the [installer page](http://www.getchef.com/chef/install/)
26
+ to get a prebuilt package.
26
27
 
27
- You will also need to set up the repository with the appropriate branches. We
28
- document the process on the
29
- [Working with Git](http://wiki.opscode.com/display/chef/Working+with+git) page
30
- of the Chef wiki.
28
+ ### Prerequisites
31
29
 
32
- Once your repository is set up, you can start working on the code. We do use
33
- TDD with RSpec, so you'll need to get a development environment running.
30
+ Install these via your platform's preferred method (apt, yum, ports,
31
+ emerge, etc.):
34
32
 
35
- ### Requirements
33
+ * git
34
+ * C compiler, header files, etc. On Ubuntu/debian, use the
35
+ `build-essential` package.
36
+ * ruby 1.8.7 or later (1.9.3+ recommended)
37
+ * rubygems
38
+ * bundler
36
39
 
37
- Ruby 1.8.7+ (As of 2012-05-25 Ruby 1.8.6 should still work, except for CHEF-2329.)
40
+ ### Chef Installation
38
41
 
39
- ### Environment
42
+ Then get the source and install it:
40
43
 
41
- In order to have a development environment where changes to the Chef code can
42
- be tested, we'll need to install a few things after setting up the Git
43
- repository.
44
+ # Clone this repo
45
+ git clone https://github.com/opscode/chef.git
46
+
47
+ # cd into the source tree
48
+ cd chef
44
49
 
45
- #### Non-Gem Dependencies
50
+ # Install dependencies with bundler
51
+ bundle install
46
52
 
47
- Install these via your platform's preferred method; for example apt, yum,
48
- ports, emerge, etc.
53
+ # Build a gem
54
+ rake gem
49
55
 
50
- * [Git](http://git-scm.com/)
51
- * GCC and C Standard Libraries, header files, etc. (i.e., build-essential on
52
- debian/ubuntu)
53
- * Ruby development package
56
+ # Install the gem you just built
57
+ gem install pkg/chef-VERSION.gem
54
58
 
55
- #### Runtime Rubygem Dependencies
56
59
 
57
- First you'll need [bundler](http://github.com/carlhuda/bundler) which can
58
- be installed with a simple `gem install bundler`. Afterwords, do the following:
60
+ ## Contributing/Development
59
61
 
60
- bundle install
62
+ Before working on the code, if you plan to contribute your changes, you need to
63
+ read the
64
+ [Opscode Contributing document](http://docs.opscode.com/community_contributions.html).
65
+
66
+ You will also need to set up the repository with the appropriate branches. We
67
+ document the process on the
68
+ [Working with Git](http://wiki.opscode.com/display/chef/Working+with+git) page
69
+ of the Chef wiki.
70
+
71
+ Once your repository is set up, you can start working on the code. We do use
72
+ TDD with RSpec, so you'll need to get a development environment running.
73
+ Follow the above procedure ("Installing from Git") to get your local
74
+ copy of the source running.
61
75
 
62
76
  ## Testing
63
77
 
64
78
  We use RSpec for unit/spec tests. It is not necessary to start the development
65
79
  environment to run the specs--they are completely standalone.
66
80
 
67
- rake spec
81
+ # Run All the Tests
82
+ bundle exec rake spec
83
+
84
+ # Run a Single Test File
85
+ bundle exec rspec spec/PATH/TO/FILE_spec.rb
86
+
87
+ # Run a Subset of Tests
88
+ bundle exec rspec spec/PATH/TO/DIR
68
89
 
69
90
  # License
70
91
 
@@ -73,7 +94,7 @@ Chef - A configuration management system
73
94
  | | |
74
95
  |:---------------------|:-----------------------------------------|
75
96
  | **Author:** | Adam Jacob (<adam@opscode.com>)
76
- | **Copyright:** | Copyright (c) 2008-2012 Opscode, Inc.
97
+ | **Copyright:** | Copyright (c) 2008-2014 Chef Software, Inc.
77
98
  | **License:** | Apache License, Version 2.0
78
99
 
79
100
  Licensed under the Apache License, Version 2.0 (the "License");
@@ -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="&#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
127
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#x6c;&#x74;&#111;&#x3a;&#x61;&#100;&#x61;&#109;&#x40;&#111;&#115;&#112;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#97;&#109;&#x40;&#111;&#115;&#112;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#x6f;&#109;</a> of Opscode
128
128
  (http://www.opscode.com), with contributions from the community. This
129
- manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#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
129
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#111;&#115;&#104;&#x75;&#x61;&#x40;&#111;&#112;&#x73;&#99;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#112;&#115;&#x63;&#111;&#x64;&#101;&#x2e;&#x63;&#111;&#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,8 +135,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
135
135
 
136
136
 
137
137
  <ol class='man-decor man-foot man foot'>
138
- <li class='tl'>Chef 11.10.0.alpha.1</li>
139
- <li class='tc'>December 2013</li>
138
+ <li class='tl'>Chef 11.10.0.rc.0</li>
139
+ <li class='tc'>January 2014</li>
140
140
  <li class='tr'>chef-client(8)</li>
141
141
  </ol>
142
142
 
@@ -143,9 +143,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
143
143
 
144
144
  <h2 id="AUTHOR">AUTHOR</h2>
145
145
 
146
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#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
146
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#111;&#58;&#97;&#x64;&#97;&#x6d;&#64;&#111;&#115;&#x70;&#99;&#111;&#x64;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#x6d;&#64;&#111;&#x73;&#x70;&#99;&#111;&#100;&#x65;&#46;&#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;&#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
148
+ manual page was created by Nuo Yan <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#111;&#x3a;&#110;&#117;&#111;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#110;&#x75;&#x6f;&#64;&#111;&#112;&#115;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#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,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 11.10.0.alpha.1</li>
158
- <li class='tc'>December 2013</li>
157
+ <li class='tl'>Chef 11.10.0.rc.0</li>
158
+ <li class='tc'>January 2014</li>
159
159
  <li class='tr'>chef-expander(8)</li>
160
160
  </ol>
161
161
 
@@ -125,9 +125,9 @@ wiki, http://wiki.opscode.com/display/chef/Home.</p>
125
125
 
126
126
  <h2 id="AUTHOR">AUTHOR</h2>
127
127
 
128
- <p>Chef was written by Adam Jacob <a href="&#x6d;&#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
+ <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#115;&#x70;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#99;&#x6f;&#100;&#101;&#46;&#99;&#111;&#109;</a> of Opscode
129
129
  (http://www.opscode.com), with contributions from the community. This
130
- manual page was created by Nuo Yan <a href="&#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
130
+ manual page was created by Nuo Yan <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#110;&#x75;&#111;&#x40;&#x6f;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#109;" data-bare-link="true">&#x6e;&#x75;&#x6f;&#x40;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#109;</a>. Permission is
131
131
  granted to copy, distribute and / or modify this document under the
132
132
  terms of the Apache 2.0 License.</p>
133
133
 
@@ -136,8 +136,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
136
136
 
137
137
 
138
138
  <ol class='man-decor man-foot man foot'>
139
- <li class='tl'>Chef 11.10.0.alpha.1</li>
140
- <li class='tc'>December 2013</li>
139
+ <li class='tl'>Chef 11.10.0.rc.0</li>
140
+ <li class='tc'>January 2014</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;&#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
166
+ <p>Chef was written by Adam Jacob <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#111;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#115;&#x70;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#111;&#x73;&#x70;&#99;&#x6f;&#100;&#101;&#46;&#99;&#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="&#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
168
+ manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#x6f;&#115;&#x68;&#x75;&#x61;&#64;&#111;&#x70;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#x75;&#x61;&#64;&#x6f;&#x70;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#x63;&#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,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 11.10.0.alpha.1</li>
179
- <li class='tc'>December 2013</li>
178
+ <li class='tl'>Chef 11.10.0.rc.0</li>
179
+ <li class='tc'>January 2014</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;&#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
164
+ <p>Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#108;&#x74;&#x6f;&#x3a;&#x61;&#100;&#x61;&#x6d;&#64;&#x6f;&#115;&#112;&#99;&#111;&#100;&#x65;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#100;&#x61;&#109;&#64;&#x6f;&#x73;&#112;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;</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;&#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
166
+ manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#58;&#106;&#111;&#x73;&#x68;&#117;&#97;&#x40;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#106;&#111;&#115;&#x68;&#x75;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#109;</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 11.10.0.alpha.1</li>
176
- <li class='tc'>December 2013</li>
175
+ <li class='tl'>Chef 11.10.0.rc.0</li>
176
+ <li class='tc'>January 2014</li>
177
177
  <li class='tr'>chef-server(8)</li>
178
178
  </ol>
179
179
 
@@ -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;&#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
263
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#x61;&#x69;&#108;&#x74;&#x6f;&#58;&#97;&#100;&#x61;&#x6d;&#64;&#x6f;&#x70;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#x61;&#100;&#97;&#x6d;&#64;&#111;&#x70;&#115;&#99;&#111;&#x64;&#101;&#46;&#99;&#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="&#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>.
269
+ <p> This manual page was written by Daniel DeLeo <a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x64;&#97;&#110;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#x64;&#97;&#x6e;&#64;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#101;&#x2e;&#x63;&#111;&#x6d;</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,8 +276,8 @@ libraries.</p>
276
276
 
277
277
 
278
278
  <ol class='man-decor man-foot man foot'>
279
- <li class='tl'>Chef 11.10.0.alpha.1</li>
280
- <li class='tc'>December 2013</li>
279
+ <li class='tl'>Chef 11.10.0.rc.0</li>
280
+ <li class='tc'>January 2014</li>
281
281
  <li class='tr'>chef-shell(1)</li>
282
282
  </ol>
283
283
 
@@ -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="&#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
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#x61;&#100;&#x61;&#x6d;&#x40;&#111;&#x73;&#x70;&#99;&#111;&#100;&#x65;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#x40;&#111;&#115;&#x70;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#111;&#x6d;</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;&#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
+ manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#106;&#x6f;&#115;&#x68;&#117;&#97;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#x64;&#101;&#46;&#99;&#111;&#109;" data-bare-link="true">&#106;&#x6f;&#115;&#104;&#x75;&#x61;&#x40;&#x6f;&#x70;&#115;&#x63;&#111;&#x64;&#x65;&#x2e;&#x63;&#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,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 11.10.0.alpha.1</li>
179
- <li class='tc'>December 2013</li>
178
+ <li class='tl'>Chef 11.10.0.rc.0</li>
179
+ <li class='tc'>January 2014</li>
180
180
  <li class='tr'>chef-solo(8)</li>
181
181
  </ol>
182
182
 
@@ -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&#39;s search server</title>
6
+ <title>chef-solr(8) - Runs as Chef'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="&#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
147
+ <p>Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#x61;&#x64;&#97;&#109;&#64;&#111;&#x73;&#112;&#99;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#x61;&#x64;&#x61;&#109;&#x40;&#x6f;&#115;&#x70;&#x63;&#x6f;&#x64;&#101;&#x2e;&#99;&#111;&#x6d;</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;&#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
149
+ manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#x69;&#108;&#x74;&#111;&#58;&#x6a;&#x6f;&#x73;&#x68;&#x75;&#97;&#64;&#x6f;&#x70;&#115;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#x75;&#x61;&#x40;&#x6f;&#112;&#x73;&#99;&#x6f;&#x64;&#101;&#46;&#99;&#x6f;&#x6d;</a> with
150
150
  help2man. Permission is granted to copy, distribute and / or modify
151
151
  this document under the terms of the Apache 2.0 License.</p>
152
152
 
@@ -155,8 +155,8 @@ found in /usr/share/common-licenses/Apache-2.0.</p>
155
155
 
156
156
 
157
157
  <ol class='man-decor man-foot man foot'>
158
- <li class='tl'>Chef 11.10.0.alpha.1</li>
159
- <li class='tc'>December 2013</li>
158
+ <li class='tl'>Chef 11.10.0.rc.0</li>
159
+ <li class='tc'>January 2014</li>
160
160
  <li class='tr'>chef-solr(8)</li>
161
161
  </ol>
162
162
 
@@ -218,11 +218,11 @@ to other users via the process list using tools such as <span class="man-ref">ps
218
218
 
219
219
  <h2 id="AUTHOR">AUTHOR</h2>
220
220
 
221
- <p> Chef was written by Adam Jacob <a href="&#109;&#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>
221
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#x6f;&#58;&#x61;&#x64;&#x61;&#109;&#x40;&#x6f;&#x70;&#115;&#99;&#111;&#x64;&#101;&#x2e;&#99;&#x6f;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#64;&#111;&#112;&#115;&#x63;&#111;&#100;&#101;&#46;&#x63;&#111;&#109;</a> with many contributions from the community.</p>
222
222
 
223
223
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
224
224
 
225
- <p> This manual page was written by Joshua Timberman <a href="&#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>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6a;&#x6f;&#x73;&#x68;&#x75;&#x61;&#64;&#111;&#112;&#x73;&#x63;&#111;&#x64;&#101;&#46;&#99;&#x6f;&#109;" data-bare-link="true">&#106;&#111;&#x73;&#104;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#x63;&#x6f;&#x6d;</a>.
226
226
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
227
227
 
228
228
  <h2 id="CHEF">CHEF</h2>
@@ -231,8 +231,8 @@ 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.10.0.alpha.1</li>
235
- <li class='tc'>December 2013</li>
234
+ <li class='tl'>Chef 11.10.0.rc.0</li>
235
+ <li class='tc'>January 2014</li>
236
236
  <li class='tr'>knife-bootstrap(1)</li>
237
237
  </ol>
238
238
 
@@ -196,11 +196,11 @@ setting up a host for management with Chef.</p>
196
196
 
197
197
  <h2 id="AUTHOR">AUTHOR</h2>
198
198
 
199
- <p> Chef was written by Adam Jacob <a href="&#109;&#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>
199
+ <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#97;&#x64;&#97;&#x6d;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#111;&#109;</a> with many contributions from the community.</p>
200
200
 
201
201
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
202
202
 
203
- <p> This manual page was written by Joshua Timberman <a href="&#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>.
203
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#105;&#108;&#116;&#111;&#x3a;&#x6a;&#x6f;&#115;&#104;&#x75;&#x61;&#x40;&#111;&#x70;&#115;&#99;&#111;&#100;&#x65;&#46;&#99;&#111;&#x6d;" data-bare-link="true">&#x6a;&#111;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#x70;&#x73;&#99;&#x6f;&#100;&#x65;&#46;&#99;&#111;&#109;</a>.
204
204
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
205
205
 
206
206
  <h2 id="CHEF">CHEF</h2>
@@ -209,8 +209,8 @@ setting up a host for management with Chef.</p>
209
209
 
210
210
 
211
211
  <ol class='man-decor man-foot man foot'>
212
- <li class='tl'>Chef 11.10.0.alpha.1</li>
213
- <li class='tc'>December 2013</li>
212
+ <li class='tl'>Chef 11.10.0.rc.0</li>
213
+ <li class='tc'>January 2014</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;&#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>
150
+ <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#x69;&#108;&#116;&#x6f;&#x3a;&#x61;&#x64;&#97;&#109;&#x40;&#x6f;&#112;&#115;&#99;&#111;&#x64;&#x65;&#x2e;&#x63;&#111;&#109;" data-bare-link="true">&#97;&#x64;&#97;&#x6d;&#64;&#x6f;&#112;&#x73;&#x63;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#109;</a> with many contributions from the community.</p>
151
151
 
152
152
  <h2 id="DOCUMENTATION">DOCUMENTATION</h2>
153
153
 
154
- <p> This manual page was written by Joshua Timberman <a href="&#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>.
154
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#97;&#105;&#x6c;&#116;&#111;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#111;&#x70;&#115;&#99;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#111;&#115;&#x68;&#x75;&#97;&#x40;&#x6f;&#x70;&#115;&#x63;&#x6f;&#x64;&#x65;&#46;&#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 11.10.0.alpha.1</li>
164
- <li class='tc'>December 2013</li>
163
+ <li class='tl'>Chef 11.10.0.rc.0</li>
164
+ <li class='tc'>January 2014</li>
165
165
  <li class='tr'>knife-configure(1)</li>
166
166
  </ol>
167
167
 
@@ -218,11 +218,11 @@ configuration file.</p>
218
218
 
219
219
  <h2 id="AUTHOR">AUTHOR</h2>
220
220
 
221
- <p> Chef was written by Adam Jacob <a href="&#109;&#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>
221
+ <p> Chef was written by Adam Jacob <a href="&#109;&#x61;&#105;&#108;&#x74;&#111;&#x3a;&#x61;&#100;&#x61;&#109;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#x64;&#101;&#x2e;&#x63;&#x6f;&#109;" data-bare-link="true">&#97;&#x64;&#x61;&#x6d;&#x40;&#x6f;&#112;&#x73;&#x63;&#x6f;&#x64;&#x65;&#46;&#99;&#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="&#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>.
225
+ <p> This manual page was written by Joshua Timberman <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#106;&#x6f;&#115;&#x68;&#117;&#x61;&#64;&#111;&#x70;&#x73;&#x63;&#111;&#100;&#101;&#46;&#x63;&#111;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#115;&#x68;&#117;&#x61;&#x40;&#111;&#x70;&#x73;&#x63;&#x6f;&#100;&#101;&#46;&#99;&#x6f;&#x6d;</a>.
226
226
  Permission is granted to copy, distribute and / or modify this document under the terms of the Apache 2.0 License.</p>
227
227
 
228
228
  <h2 id="CHEF">CHEF</h2>
@@ -231,8 +231,8 @@ configuration file.</p>
231
231
 
232
232
 
233
233
  <ol class='man-decor man-foot man foot'>
234
- <li class='tl'>Chef 11.10.0.alpha.1</li>
235
- <li class='tc'>December 2013</li>
234
+ <li class='tl'>Chef 11.10.0.rc.0</li>
235
+ <li class='tc'>January 2014</li>
236
236
  <li class='tr'>knife-cookbook-site(1)</li>
237
237
  </ol>
238
238
 
@@ -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="&#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>
361
+ <p> Chef was written by Adam Jacob <a href="&#x6d;&#97;&#105;&#x6c;&#x74;&#x6f;&#x3a;&#97;&#100;&#97;&#x6d;&#x40;&#111;&#x70;&#115;&#99;&#x6f;&#100;&#x65;&#x2e;&#99;&#111;&#x6d;" data-bare-link="true">&#97;&#x64;&#x61;&#109;&#64;&#x6f;&#112;&#115;&#99;&#x6f;&#100;&#x65;&#46;&#x63;&#x6f;&#109;</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;&#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>.
365
+ <p> This manual page was written by Joshua Timberman <a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#111;&#x3a;&#x6a;&#x6f;&#x73;&#104;&#x75;&#x61;&#64;&#111;&#x70;&#115;&#x63;&#111;&#100;&#x65;&#46;&#x63;&#x6f;&#x6d;" data-bare-link="true">&#x6a;&#x6f;&#x73;&#x68;&#117;&#x61;&#64;&#x6f;&#112;&#x73;&#99;&#x6f;&#100;&#101;&#46;&#99;&#111;&#x6d;</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,8 +371,8 @@ cookbook.</p>
371
371
 
372
372
 
373
373
  <ol class='man-decor man-foot man foot'>
374
- <li class='tl'>Chef 11.10.0.alpha.1</li>
375
- <li class='tc'>December 2013</li>
374
+ <li class='tl'>Chef 11.10.0.rc.0</li>
375
+ <li class='tc'>January 2014</li>
376
376
  <li class='tr'>knife-cookbook(1)</li>
377
377
  </ol>
378
378