vagrant-openstack 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (701) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +10 -0
  3. data/Gemfile.lock +67 -0
  4. data/LICENSE +24 -0
  5. data/README.md +80 -0
  6. data/Rakefile +21 -0
  7. data/Vagrantfile_ +123 -0
  8. data/cookbooks/apache2/CHANGELOG.md +150 -0
  9. data/cookbooks/apache2/CONTRIBUTING.md +257 -0
  10. data/cookbooks/apache2/Gemfile +10 -0
  11. data/cookbooks/apache2/LICENSE +201 -0
  12. data/cookbooks/apache2/README.md +581 -0
  13. data/cookbooks/apache2/attributes/default.rb +153 -0
  14. data/cookbooks/apache2/attributes/mod_auth_cas.rb +2 -0
  15. data/cookbooks/apache2/attributes/mod_auth_openid.rb +32 -0
  16. data/cookbooks/apache2/attributes/mod_ssl.rb +19 -0
  17. data/cookbooks/apache2/definitions/apache_conf.rb +26 -0
  18. data/cookbooks/apache2/definitions/apache_module.rb +53 -0
  19. data/cookbooks/apache2/definitions/apache_site.rb +43 -0
  20. data/cookbooks/apache2/definitions/web_app.rb +50 -0
  21. data/cookbooks/apache2/files/default/apache2_module_conf_generate.pl +41 -0
  22. data/cookbooks/apache2/files/default/tests/minitest/default_test.rb +77 -0
  23. data/cookbooks/apache2/files/default/tests/minitest/god_monitor_test.rb +34 -0
  24. data/cookbooks/apache2/files/default/tests/minitest/mod_apreq2_test.rb +19 -0
  25. data/cookbooks/apache2/files/default/tests/minitest/mod_auth_cas_test.rb +11 -0
  26. data/cookbooks/apache2/files/default/tests/minitest/mod_auth_openid_test.rb +37 -0
  27. data/cookbooks/apache2/files/default/tests/minitest/mod_cgi_test.rb +13 -0
  28. data/cookbooks/apache2/files/default/tests/minitest/mod_dav_svn_test.rb +14 -0
  29. data/cookbooks/apache2/files/default/tests/minitest/mod_fastcgi.rb +11 -0
  30. data/cookbooks/apache2/files/default/tests/minitest/mod_include_test.rb +15 -0
  31. data/cookbooks/apache2/files/default/tests/minitest/mod_perl_test.rb +18 -0
  32. data/cookbooks/apache2/files/default/tests/minitest/mod_php5_test.rb +13 -0
  33. data/cookbooks/apache2/files/default/tests/minitest/mod_python_test.rb +10 -0
  34. data/cookbooks/apache2/files/default/tests/minitest/mod_ssl_test.rb +28 -0
  35. data/cookbooks/apache2/files/default/tests/minitest/support/helpers.rb +54 -0
  36. data/cookbooks/apache2/metadata.json +527 -0
  37. data/cookbooks/apache2/metadata.rb +213 -0
  38. data/cookbooks/apache2/recipes/default.rb +223 -0
  39. data/cookbooks/apache2/recipes/god_monitor.rb +33 -0
  40. data/cookbooks/apache2/recipes/iptables.rb +20 -0
  41. data/cookbooks/apache2/recipes/logrotate.rb +31 -0
  42. data/cookbooks/apache2/recipes/mod_alias.rb +22 -0
  43. data/cookbooks/apache2/recipes/mod_apreq2.rb +54 -0
  44. data/cookbooks/apache2/recipes/mod_auth_basic.rb +20 -0
  45. data/cookbooks/apache2/recipes/mod_auth_cas.rb +59 -0
  46. data/cookbooks/apache2/recipes/mod_auth_digest.rb +20 -0
  47. data/cookbooks/apache2/recipes/mod_auth_openid.rb +119 -0
  48. data/cookbooks/apache2/recipes/mod_authn_file.rb +20 -0
  49. data/cookbooks/apache2/recipes/mod_authnz_ldap.rb +20 -0
  50. data/cookbooks/apache2/recipes/mod_authz_default.rb +20 -0
  51. data/cookbooks/apache2/recipes/mod_authz_groupfile.rb +20 -0
  52. data/cookbooks/apache2/recipes/mod_authz_host.rb +20 -0
  53. data/cookbooks/apache2/recipes/mod_authz_user.rb +20 -0
  54. data/cookbooks/apache2/recipes/mod_autoindex.rb +22 -0
  55. data/cookbooks/apache2/recipes/mod_cgi.rb +20 -0
  56. data/cookbooks/apache2/recipes/mod_dav.rb +20 -0
  57. data/cookbooks/apache2/recipes/mod_dav_fs.rb +21 -0
  58. data/cookbooks/apache2/recipes/mod_dav_svn.rb +41 -0
  59. data/cookbooks/apache2/recipes/mod_deflate.rb +22 -0
  60. data/cookbooks/apache2/recipes/mod_dir.rb +22 -0
  61. data/cookbooks/apache2/recipes/mod_env.rb +20 -0
  62. data/cookbooks/apache2/recipes/mod_expires.rb +20 -0
  63. data/cookbooks/apache2/recipes/mod_fastcgi.rb +26 -0
  64. data/cookbooks/apache2/recipes/mod_fcgid.rb +55 -0
  65. data/cookbooks/apache2/recipes/mod_headers.rb +20 -0
  66. data/cookbooks/apache2/recipes/mod_include.rb +22 -0
  67. data/cookbooks/apache2/recipes/mod_ldap.rb +20 -0
  68. data/cookbooks/apache2/recipes/mod_log_config.rb +24 -0
  69. data/cookbooks/apache2/recipes/mod_logio.rb +24 -0
  70. data/cookbooks/apache2/recipes/mod_mime.rb +22 -0
  71. data/cookbooks/apache2/recipes/mod_negotiation.rb +22 -0
  72. data/cookbooks/apache2/recipes/mod_perl.rb +44 -0
  73. data/cookbooks/apache2/recipes/mod_php5.rb +78 -0
  74. data/cookbooks/apache2/recipes/mod_proxy.rb +22 -0
  75. data/cookbooks/apache2/recipes/mod_proxy_ajp.rb +21 -0
  76. data/cookbooks/apache2/recipes/mod_proxy_balancer.rb +20 -0
  77. data/cookbooks/apache2/recipes/mod_proxy_connect.rb +20 -0
  78. data/cookbooks/apache2/recipes/mod_proxy_http.rb +20 -0
  79. data/cookbooks/apache2/recipes/mod_python.rb +37 -0
  80. data/cookbooks/apache2/recipes/mod_rewrite.rb +20 -0
  81. data/cookbooks/apache2/recipes/mod_setenvif.rb +22 -0
  82. data/cookbooks/apache2/recipes/mod_ssl.rb +46 -0
  83. data/cookbooks/apache2/recipes/mod_status.rb +22 -0
  84. data/cookbooks/apache2/recipes/mod_wsgi.rb +38 -0
  85. data/cookbooks/apache2/recipes/mod_xsendfile.rb +38 -0
  86. data/cookbooks/apache2/templates/default/a2dismod.erb +22 -0
  87. data/cookbooks/apache2/templates/default/a2dissite.erb +29 -0
  88. data/cookbooks/apache2/templates/default/a2enmod.erb +37 -0
  89. data/cookbooks/apache2/templates/default/a2ensite.erb +38 -0
  90. data/cookbooks/apache2/templates/default/apache2.conf.erb +238 -0
  91. data/cookbooks/apache2/templates/default/apache2.god.erb +19 -0
  92. data/cookbooks/apache2/templates/default/charset.erb +6 -0
  93. data/cookbooks/apache2/templates/default/default-site.erb +57 -0
  94. data/cookbooks/apache2/templates/default/etc-sysconfig-httpd.erb +31 -0
  95. data/cookbooks/apache2/templates/default/mods/README +2 -0
  96. data/cookbooks/apache2/templates/default/mods/alias.conf.erb +24 -0
  97. data/cookbooks/apache2/templates/default/mods/auth_cas.conf.erb +1 -0
  98. data/cookbooks/apache2/templates/default/mods/auth_cas.load.erb +1 -0
  99. data/cookbooks/apache2/templates/default/mods/authopenid.load.erb +1 -0
  100. data/cookbooks/apache2/templates/default/mods/autoindex.conf.erb +101 -0
  101. data/cookbooks/apache2/templates/default/mods/deflate.conf.erb +16 -0
  102. data/cookbooks/apache2/templates/default/mods/dir.conf.erb +5 -0
  103. data/cookbooks/apache2/templates/default/mods/fastcgi.conf.erb +5 -0
  104. data/cookbooks/apache2/templates/default/mods/fcgid.conf.erb +10 -0
  105. data/cookbooks/apache2/templates/default/mods/include.conf.erb +4 -0
  106. data/cookbooks/apache2/templates/default/mods/include.erb +4 -0
  107. data/cookbooks/apache2/templates/default/mods/mime.conf.erb +198 -0
  108. data/cookbooks/apache2/templates/default/mods/negotiation.conf.erb +18 -0
  109. data/cookbooks/apache2/templates/default/mods/php5.conf.erb +16 -0
  110. data/cookbooks/apache2/templates/default/mods/proxy.conf.erb +19 -0
  111. data/cookbooks/apache2/templates/default/mods/setenvif.conf.erb +28 -0
  112. data/cookbooks/apache2/templates/default/mods/ssl.conf.erb +77 -0
  113. data/cookbooks/apache2/templates/default/mods/status.conf.erb +26 -0
  114. data/cookbooks/apache2/templates/default/port_apache.erb +3 -0
  115. data/cookbooks/apache2/templates/default/ports.conf.erb +6 -0
  116. data/cookbooks/apache2/templates/default/security.erb +50 -0
  117. data/cookbooks/apache2/templates/default/web_app.conf.erb +47 -0
  118. data/cookbooks/apt/CHANGELOG.md +75 -0
  119. data/cookbooks/apt/CONTRIBUTING +29 -0
  120. data/cookbooks/apt/Gemfile +3 -0
  121. data/cookbooks/apt/LICENSE +201 -0
  122. data/cookbooks/apt/README.md +238 -0
  123. data/cookbooks/apt/attributes/default.rb +3 -0
  124. data/cookbooks/apt/files/default/apt-proxy-v2.conf +50 -0
  125. data/cookbooks/apt/metadata.json +34 -0
  126. data/cookbooks/apt/metadata.rb +14 -0
  127. data/cookbooks/apt/providers/preference.rb +61 -0
  128. data/cookbooks/apt/providers/repository.rb +138 -0
  129. data/cookbooks/apt/recipes/cacher-client.rb +59 -0
  130. data/cookbooks/apt/recipes/cacher-ng.rb +43 -0
  131. data/cookbooks/apt/recipes/default.rb +68 -0
  132. data/cookbooks/apt/resources/preference.rb +30 -0
  133. data/cookbooks/apt/resources/repository.rb +40 -0
  134. data/cookbooks/apt/templates/default/01proxy.erb +2 -0
  135. data/cookbooks/apt/templates/default/acng.conf.erb +276 -0
  136. data/cookbooks/build-essential/CHANGELOG.md +35 -0
  137. data/cookbooks/build-essential/CONTRIBUTING +29 -0
  138. data/cookbooks/build-essential/Gemfile +3 -0
  139. data/cookbooks/build-essential/LICENSE +201 -0
  140. data/cookbooks/build-essential/README.md +131 -0
  141. data/cookbooks/build-essential/attributes/default.rb +33 -0
  142. data/cookbooks/build-essential/metadata.json +43 -0
  143. data/cookbooks/build-essential/metadata.rb +15 -0
  144. data/cookbooks/build-essential/recipes/default.rb +92 -0
  145. data/cookbooks/chef_handler/CHANGELOG.md +28 -0
  146. data/cookbooks/chef_handler/CONTRIBUTING +29 -0
  147. data/cookbooks/chef_handler/LICENSE +201 -0
  148. data/cookbooks/chef_handler/README.md +103 -0
  149. data/cookbooks/chef_handler/attributes/default.rb +30 -0
  150. data/cookbooks/chef_handler/files/default/handlers/README +1 -0
  151. data/cookbooks/chef_handler/metadata.json +29 -0
  152. data/cookbooks/chef_handler/metadata.rb +7 -0
  153. data/cookbooks/chef_handler/providers/default.rb +93 -0
  154. data/cookbooks/chef_handler/recipes/default.rb +33 -0
  155. data/cookbooks/chef_handler/recipes/json_file.rb +28 -0
  156. data/cookbooks/chef_handler/resources/default.rb +34 -0
  157. data/cookbooks/dmg/CHANGELOG.md +17 -0
  158. data/cookbooks/dmg/CONTRIBUTING +29 -0
  159. data/cookbooks/dmg/LICENSE +201 -0
  160. data/cookbooks/dmg/README.md +142 -0
  161. data/cookbooks/dmg/attributes/default.rb +20 -0
  162. data/cookbooks/dmg/metadata.json +30 -0
  163. data/cookbooks/dmg/metadata.rb +8 -0
  164. data/cookbooks/dmg/providers/package.rb +82 -0
  165. data/cookbooks/dmg/recipes/default.rb +18 -0
  166. data/cookbooks/dmg/resources/package.rb +37 -0
  167. data/cookbooks/git/CHANGELOG.md +63 -0
  168. data/cookbooks/git/CONTRIBUTING +29 -0
  169. data/cookbooks/git/Gemfile +3 -0
  170. data/cookbooks/git/LICENSE +201 -0
  171. data/cookbooks/git/README.md +115 -0
  172. data/cookbooks/git/attributes/default.rb +40 -0
  173. data/cookbooks/git/metadata.json +77 -0
  174. data/cookbooks/git/metadata.rb +35 -0
  175. data/cookbooks/git/recipes/default.rb +46 -0
  176. data/cookbooks/git/recipes/server.rb +57 -0
  177. data/cookbooks/git/recipes/source.rb +48 -0
  178. data/cookbooks/git/recipes/windows.rb +32 -0
  179. data/cookbooks/git/templates/default/git-xinetd.d.erb +10 -0
  180. data/cookbooks/git/templates/default/sv-git-daemon-log-run.erb +2 -0
  181. data/cookbooks/git/templates/default/sv-git-daemon-run.erb +3 -0
  182. data/cookbooks/mongodb/README.md +155 -0
  183. data/cookbooks/mongodb/attributes/default.rb +27 -0
  184. data/cookbooks/mongodb/definitions/mongodb.rb +176 -0
  185. data/cookbooks/mongodb/files/default/mongodb.init +216 -0
  186. data/cookbooks/mongodb/libraries/mongodb.rb +262 -0
  187. data/cookbooks/mongodb/metadata.json +139 -0
  188. data/cookbooks/mongodb/metadata.rb +53 -0
  189. data/cookbooks/mongodb/recipes/10gen_repo.rb +47 -0
  190. data/cookbooks/mongodb/recipes/configserver.rb +34 -0
  191. data/cookbooks/mongodb/recipes/default.rb +64 -0
  192. data/cookbooks/mongodb/recipes/mongos.rb +46 -0
  193. data/cookbooks/mongodb/recipes/replicaset.rb +31 -0
  194. data/cookbooks/mongodb/recipes/shard.rb +41 -0
  195. data/cookbooks/mongodb/templates/default/mongodb.default.erb +21 -0
  196. data/cookbooks/mysql/CHANGELOG.md +130 -0
  197. data/cookbooks/mysql/CONTRIBUTING +29 -0
  198. data/cookbooks/mysql/Gemfile +8 -0
  199. data/cookbooks/mysql/LICENSE +201 -0
  200. data/cookbooks/mysql/README.md +227 -0
  201. data/cookbooks/mysql/attributes/client.rb +50 -0
  202. data/cookbooks/mysql/attributes/server.rb +240 -0
  203. data/cookbooks/mysql/files/default/tests/minitest/server_test.rb +36 -0
  204. data/cookbooks/mysql/files/default/tests/minitest/support/helpers.rb +11 -0
  205. data/cookbooks/mysql/libraries/helpers.rb +33 -0
  206. data/cookbooks/mysql/metadata.json +418 -0
  207. data/cookbooks/mysql/metadata.rb +140 -0
  208. data/cookbooks/mysql/recipes/client.rb +59 -0
  209. data/cookbooks/mysql/recipes/default.rb +20 -0
  210. data/cookbooks/mysql/recipes/ruby.rb +36 -0
  211. data/cookbooks/mysql/recipes/server.rb +221 -0
  212. data/cookbooks/mysql/recipes/server_ec2.rb +51 -0
  213. data/cookbooks/mysql/templates/default/debian.cnf.erb +12 -0
  214. data/cookbooks/mysql/templates/default/grants.sql.erb +15 -0
  215. data/cookbooks/mysql/templates/default/my.cnf.erb +307 -0
  216. data/cookbooks/mysql/templates/default/mysql-server.seed.erb +10 -0
  217. data/cookbooks/mysql/templates/default/port_mysql.erb +3 -0
  218. data/cookbooks/mysql/templates/windows/my.cnf.erb +61 -0
  219. data/cookbooks/openssl/CHANGELOG.md +3 -0
  220. data/cookbooks/openssl/CONTRIBUTING +29 -0
  221. data/cookbooks/openssl/LICENSE +201 -0
  222. data/cookbooks/openssl/README.md +37 -0
  223. data/cookbooks/openssl/libraries/secure_password.rb +37 -0
  224. data/cookbooks/openssl/metadata.json +30 -0
  225. data/cookbooks/openssl/metadata.rb +9 -0
  226. data/cookbooks/openssl/recipes/default.rb +19 -0
  227. data/cookbooks/osops-utils/README.md +30 -0
  228. data/cookbooks/osops-utils/libraries/ip_location.rb +74 -0
  229. data/cookbooks/osops-utils/metadata.rb +6 -0
  230. data/cookbooks/osops-utils/recipes/default.rb +18 -0
  231. data/cookbooks/runit/CHANGELOG.md +81 -0
  232. data/cookbooks/runit/CONTRIBUTING.md +257 -0
  233. data/cookbooks/runit/Gemfile +8 -0
  234. data/cookbooks/runit/Gemfile.lock +145 -0
  235. data/cookbooks/runit/LICENSE +201 -0
  236. data/cookbooks/runit/README.md +448 -0
  237. data/cookbooks/runit/Rakefile +17 -0
  238. data/cookbooks/runit/attributes/default.rb +77 -0
  239. data/cookbooks/runit/files/default/runit-2.1.1.tar.gz +0 -0
  240. data/cookbooks/runit/files/default/runit.seed +1 -0
  241. data/cookbooks/runit/files/default/runsvdir +0 -0
  242. data/cookbooks/runit/files/ubuntu-6.10/runsvdir +6 -0
  243. data/cookbooks/runit/files/ubuntu-7.04/runsvdir +7 -0
  244. data/cookbooks/runit/files/ubuntu-7.10/runsvdir +7 -0
  245. data/cookbooks/runit/files/ubuntu-8.04/runsvdir +7 -0
  246. data/cookbooks/runit/libraries/default.rb +0 -0
  247. data/cookbooks/runit/libraries/provider_runit_service.rb +434 -0
  248. data/cookbooks/runit/libraries/resource_runit_service.rb +185 -0
  249. data/cookbooks/runit/metadata.json +40 -0
  250. data/cookbooks/runit/metadata.rb +15 -0
  251. data/cookbooks/runit/recipes/default.rb +115 -0
  252. data/cookbooks/runit/templates/debian/init.d.erb +66 -0
  253. data/cookbooks/runit/templates/gentoo/runit-start.sh.erb +32 -0
  254. data/cookbooks/windows/CHANGELOG.md +161 -0
  255. data/cookbooks/windows/CONTRIBUTING +29 -0
  256. data/cookbooks/windows/LICENSE +201 -0
  257. data/cookbooks/windows/README.md +609 -0
  258. data/cookbooks/windows/attributes/default.rb +22 -0
  259. data/cookbooks/windows/files/default/handlers/windows_reboot_handler.rb +76 -0
  260. data/cookbooks/windows/libraries/feature_base.rb +41 -0
  261. data/cookbooks/windows/libraries/helper.rb +86 -0
  262. data/cookbooks/windows/libraries/registry_helper.rb +357 -0
  263. data/cookbooks/windows/libraries/version.rb +204 -0
  264. data/cookbooks/windows/libraries/windows_privileged.rb +94 -0
  265. data/cookbooks/windows/metadata.json +31 -0
  266. data/cookbooks/windows/metadata.rb +9 -0
  267. data/cookbooks/windows/providers/auto_run.rb +32 -0
  268. data/cookbooks/windows/providers/batch.rb +62 -0
  269. data/cookbooks/windows/providers/feature_dism.rb +47 -0
  270. data/cookbooks/windows/providers/feature_servermanagercmd.rb +47 -0
  271. data/cookbooks/windows/providers/package.rb +251 -0
  272. data/cookbooks/windows/providers/pagefile.rb +153 -0
  273. data/cookbooks/windows/providers/path.rb +35 -0
  274. data/cookbooks/windows/providers/printer.rb +100 -0
  275. data/cookbooks/windows/providers/printer_port.rb +102 -0
  276. data/cookbooks/windows/providers/reboot.rb +31 -0
  277. data/cookbooks/windows/providers/registry.rb +72 -0
  278. data/cookbooks/windows/providers/shortcut.rb +56 -0
  279. data/cookbooks/windows/providers/task.rb +124 -0
  280. data/cookbooks/windows/providers/zipfile.rb +91 -0
  281. data/cookbooks/windows/recipes/default.rb +34 -0
  282. data/cookbooks/windows/recipes/reboot_handler.rb +32 -0
  283. data/cookbooks/windows/resources/auto_run.rb +30 -0
  284. data/cookbooks/windows/resources/batch.rb +36 -0
  285. data/cookbooks/windows/resources/feature.rb +40 -0
  286. data/cookbooks/windows/resources/package.rb +46 -0
  287. data/cookbooks/windows/resources/pagefile.rb +29 -0
  288. data/cookbooks/windows/resources/path.rb +28 -0
  289. data/cookbooks/windows/resources/printer.rb +41 -0
  290. data/cookbooks/windows/resources/printer_port.rb +40 -0
  291. data/cookbooks/windows/resources/reboot.rb +29 -0
  292. data/cookbooks/windows/resources/registry.rb +33 -0
  293. data/cookbooks/windows/resources/shortcut.rb +35 -0
  294. data/cookbooks/windows/resources/task.rb +46 -0
  295. data/cookbooks/windows/resources/zipfile.rb +33 -0
  296. data/cookbooks/yum/CHANGELOG.md +74 -0
  297. data/cookbooks/yum/CONTRIBUTING.md +257 -0
  298. data/cookbooks/yum/Gemfile +3 -0
  299. data/cookbooks/yum/Gemfile.lock +131 -0
  300. data/cookbooks/yum/LICENSE +201 -0
  301. data/cookbooks/yum/README.md +255 -0
  302. data/cookbooks/yum/attributes/default.rb +28 -0
  303. data/cookbooks/yum/attributes/epel.rb +35 -0
  304. data/cookbooks/yum/attributes/remi.rb +28 -0
  305. data/cookbooks/yum/metadata.json +100 -0
  306. data/cookbooks/yum/metadata.rb +37 -0
  307. data/cookbooks/yum/providers/key.rb +78 -0
  308. data/cookbooks/yum/providers/repository.rb +120 -0
  309. data/cookbooks/yum/recipes/default.rb +18 -0
  310. data/cookbooks/yum/recipes/epel.rb +32 -0
  311. data/cookbooks/yum/recipes/ius.rb +40 -0
  312. data/cookbooks/yum/recipes/remi.rb +33 -0
  313. data/cookbooks/yum/recipes/repoforge.rb +48 -0
  314. data/cookbooks/yum/recipes/yum.rb +23 -0
  315. data/cookbooks/yum/resources/key.rb +29 -0
  316. data/cookbooks/yum/resources/repository.rb +38 -0
  317. data/cookbooks/yum/templates/default/repo.erb +29 -0
  318. data/cookbooks/yum/templates/default/yum-rhel5.conf.erb +33 -0
  319. data/cookbooks/yum/templates/default/yum-rhel6.conf.erb +36 -0
  320. data/lib/vagrant-openstack.rb +18 -0
  321. data/lib/vagrant-openstack/action.rb +100 -0
  322. data/lib/vagrant-openstack/action/boot.rb +150 -0
  323. data/lib/vagrant-openstack/action/connect.rb +38 -0
  324. data/lib/vagrant-openstack/action/created.rb +20 -0
  325. data/lib/vagrant-openstack/action/delete.rb +28 -0
  326. data/lib/vagrant-openstack/action/read_ssh_info.rb +54 -0
  327. data/lib/vagrant-openstack/action/release_ip.rb +43 -0
  328. data/lib/vagrant-openstack/action/state.rb +38 -0
  329. data/lib/vagrant-openstack/action/sync_folder.rb +57 -0
  330. data/lib/vagrant-openstack/config.rb +58 -0
  331. data/lib/vagrant-openstack/driver/base.rb +344 -0
  332. data/lib/vagrant-openstack/driver/folsom.rb +471 -0
  333. data/lib/vagrant-openstack/driver/meta.rb +78 -0
  334. data/lib/vagrant-openstack/driver/version_4_2.rb +470 -0
  335. data/lib/vagrant-openstack/errors.rb +15 -0
  336. data/lib/vagrant-openstack/plugin.rb +71 -0
  337. data/lib/vagrant-openstack/provider.rb +52 -0
  338. data/lib/vagrant-openstack/version.rb +5 -0
  339. data/locales/en.yml +57 -0
  340. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/metadata.json +1 -0
  341. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/metadata.json +1 -0
  342. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package.tar.gz +0 -0
  343. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/CHANGELOG.md +150 -0
  344. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/CONTRIBUTING.md +257 -0
  345. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/Gemfile +10 -0
  346. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/LICENSE +201 -0
  347. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/README.md +581 -0
  348. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/attributes/default.rb +153 -0
  349. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/attributes/mod_auth_cas.rb +2 -0
  350. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/attributes/mod_auth_openid.rb +32 -0
  351. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/attributes/mod_ssl.rb +19 -0
  352. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/definitions/apache_conf.rb +26 -0
  353. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/definitions/apache_module.rb +53 -0
  354. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/definitions/apache_site.rb +43 -0
  355. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/definitions/web_app.rb +50 -0
  356. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/apache2_module_conf_generate.pl +41 -0
  357. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/default_test.rb +77 -0
  358. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/god_monitor_test.rb +34 -0
  359. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_apreq2_test.rb +19 -0
  360. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_auth_cas_test.rb +11 -0
  361. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_auth_openid_test.rb +37 -0
  362. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_cgi_test.rb +13 -0
  363. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_dav_svn_test.rb +14 -0
  364. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_fastcgi.rb +11 -0
  365. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_include_test.rb +15 -0
  366. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_perl_test.rb +18 -0
  367. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_php5_test.rb +13 -0
  368. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_python_test.rb +10 -0
  369. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/mod_ssl_test.rb +28 -0
  370. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/files/default/tests/minitest/support/helpers.rb +54 -0
  371. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/metadata.json +527 -0
  372. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/metadata.rb +213 -0
  373. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/default.rb +223 -0
  374. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/god_monitor.rb +33 -0
  375. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/iptables.rb +20 -0
  376. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/logrotate.rb +31 -0
  377. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_alias.rb +22 -0
  378. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_apreq2.rb +54 -0
  379. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_auth_basic.rb +20 -0
  380. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_auth_cas.rb +59 -0
  381. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_auth_digest.rb +20 -0
  382. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_auth_openid.rb +119 -0
  383. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authn_file.rb +20 -0
  384. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authnz_ldap.rb +20 -0
  385. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authz_default.rb +20 -0
  386. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authz_groupfile.rb +20 -0
  387. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authz_host.rb +20 -0
  388. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_authz_user.rb +20 -0
  389. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_autoindex.rb +22 -0
  390. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_cgi.rb +20 -0
  391. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_dav.rb +20 -0
  392. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_dav_fs.rb +21 -0
  393. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_dav_svn.rb +41 -0
  394. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_deflate.rb +22 -0
  395. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_dir.rb +22 -0
  396. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_env.rb +20 -0
  397. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_expires.rb +20 -0
  398. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_fastcgi.rb +26 -0
  399. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_fcgid.rb +55 -0
  400. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_headers.rb +20 -0
  401. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_include.rb +22 -0
  402. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_ldap.rb +20 -0
  403. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_log_config.rb +24 -0
  404. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_logio.rb +24 -0
  405. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_mime.rb +22 -0
  406. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_negotiation.rb +22 -0
  407. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_perl.rb +44 -0
  408. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_php5.rb +78 -0
  409. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_proxy.rb +22 -0
  410. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_proxy_ajp.rb +21 -0
  411. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_proxy_balancer.rb +20 -0
  412. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_proxy_connect.rb +20 -0
  413. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_proxy_http.rb +20 -0
  414. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_python.rb +37 -0
  415. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_rewrite.rb +20 -0
  416. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_setenvif.rb +22 -0
  417. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_ssl.rb +46 -0
  418. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_status.rb +22 -0
  419. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_wsgi.rb +38 -0
  420. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/recipes/mod_xsendfile.rb +38 -0
  421. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/a2dismod.erb +22 -0
  422. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/a2dissite.erb +29 -0
  423. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/a2enmod.erb +37 -0
  424. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/a2ensite.erb +38 -0
  425. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/apache2.conf.erb +238 -0
  426. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/apache2.god.erb +19 -0
  427. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/charset.erb +6 -0
  428. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/default-site.erb +57 -0
  429. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/etc-sysconfig-httpd.erb +31 -0
  430. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/README +2 -0
  431. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/alias.conf.erb +24 -0
  432. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/auth_cas.conf.erb +1 -0
  433. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/auth_cas.load.erb +1 -0
  434. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/authopenid.load.erb +1 -0
  435. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/autoindex.conf.erb +101 -0
  436. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/deflate.conf.erb +16 -0
  437. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/dir.conf.erb +5 -0
  438. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/fastcgi.conf.erb +5 -0
  439. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/fcgid.conf.erb +10 -0
  440. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/include.conf.erb +4 -0
  441. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/include.erb +4 -0
  442. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/mime.conf.erb +198 -0
  443. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/negotiation.conf.erb +18 -0
  444. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/php5.conf.erb +16 -0
  445. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/proxy.conf.erb +19 -0
  446. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/setenvif.conf.erb +28 -0
  447. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/ssl.conf.erb +77 -0
  448. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/mods/status.conf.erb +26 -0
  449. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/port_apache.erb +3 -0
  450. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/ports.conf.erb +6 -0
  451. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/security.erb +50 -0
  452. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version-uri/a7ab7e6a4c7e38e585540241cf05880e/package/templates/default/web_app.conf.erb +47 -0
  453. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apache2/version/1.6.0 +1 -0
  454. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/metadata.json +1 -0
  455. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/metadata.json +1 -0
  456. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package.tar.gz +0 -0
  457. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/CHANGELOG.md +75 -0
  458. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/CONTRIBUTING +29 -0
  459. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/Gemfile +3 -0
  460. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/LICENSE +201 -0
  461. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/README.md +238 -0
  462. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/attributes/default.rb +3 -0
  463. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/files/default/apt-proxy-v2.conf +50 -0
  464. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/metadata.json +34 -0
  465. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/metadata.rb +14 -0
  466. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/providers/preference.rb +61 -0
  467. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/providers/repository.rb +138 -0
  468. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/recipes/cacher-client.rb +59 -0
  469. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/recipes/cacher-ng.rb +43 -0
  470. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/recipes/default.rb +68 -0
  471. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/resources/preference.rb +30 -0
  472. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/resources/repository.rb +40 -0
  473. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/templates/default/01proxy.erb +2 -0
  474. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version-uri/2785d234753f6ad5545b00f42e79dbe3/package/templates/default/acng.conf.erb +276 -0
  475. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/apt/version/1.9.0 +1 -0
  476. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/metadata.json +1 -0
  477. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/metadata.json +1 -0
  478. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package.tar.gz +0 -0
  479. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/CHANGELOG.md +35 -0
  480. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/CONTRIBUTING +29 -0
  481. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/Gemfile +3 -0
  482. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/LICENSE +201 -0
  483. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/README.md +131 -0
  484. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/attributes/default.rb +33 -0
  485. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/metadata.json +43 -0
  486. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/metadata.rb +15 -0
  487. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version-uri/9d97db21334849b84208811aab9c2c16/package/recipes/default.rb +92 -0
  488. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/build-essential/version/1.3.4 +1 -0
  489. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/metadata.json +1 -0
  490. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/metadata.json +1 -0
  491. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package.tar.gz +0 -0
  492. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/CHANGELOG.md +28 -0
  493. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/CONTRIBUTING +29 -0
  494. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/LICENSE +201 -0
  495. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/README.md +103 -0
  496. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/attributes/default.rb +30 -0
  497. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/files/default/handlers/README +1 -0
  498. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/metadata.json +29 -0
  499. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/metadata.rb +7 -0
  500. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/providers/default.rb +93 -0
  501. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/recipes/default.rb +33 -0
  502. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/recipes/json_file.rb +28 -0
  503. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version-uri/912c3965ceeadc00cdd616571fd33c1e/package/resources/default.rb +34 -0
  504. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/chef_handler/version/1.1.4 +1 -0
  505. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/metadata.json +1 -0
  506. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/metadata.json +1 -0
  507. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package.tar.gz +0 -0
  508. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/CHANGELOG.md +17 -0
  509. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/CONTRIBUTING +29 -0
  510. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/LICENSE +201 -0
  511. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/README.md +142 -0
  512. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/attributes/default.rb +20 -0
  513. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/metadata.json +30 -0
  514. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/metadata.rb +8 -0
  515. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/providers/package.rb +82 -0
  516. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/recipes/default.rb +18 -0
  517. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version-uri/2a3be403e9a4c4a608580db59f4a975e/package/resources/package.rb +37 -0
  518. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/dmg/version/1.1.0 +1 -0
  519. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/metadata.json +1 -0
  520. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/metadata.json +1 -0
  521. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package.tar.gz +0 -0
  522. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/CHANGELOG.md +63 -0
  523. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/CONTRIBUTING +29 -0
  524. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/Gemfile +3 -0
  525. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/LICENSE +201 -0
  526. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/README.md +115 -0
  527. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/attributes/default.rb +40 -0
  528. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/metadata.json +77 -0
  529. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/metadata.rb +35 -0
  530. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/recipes/default.rb +46 -0
  531. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/recipes/server.rb +57 -0
  532. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/recipes/source.rb +48 -0
  533. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/recipes/windows.rb +32 -0
  534. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/templates/default/git-xinetd.d.erb +10 -0
  535. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/templates/default/sv-git-daemon-log-run.erb +2 -0
  536. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version-uri/306302c1591982b67153d5c49a36c542/package/templates/default/sv-git-daemon-run.erb +3 -0
  537. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/git/version/2.3.0 +1 -0
  538. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/metadata.json +1 -0
  539. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/metadata.json +1 -0
  540. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package.tar.gz +0 -0
  541. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/README.md +155 -0
  542. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/attributes/default.rb +27 -0
  543. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/definitions/mongodb.rb +176 -0
  544. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/files/default/mongodb.init +216 -0
  545. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/libraries/mongodb.rb +262 -0
  546. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/metadata.json +139 -0
  547. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/metadata.rb +53 -0
  548. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/10gen_repo.rb +47 -0
  549. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/configserver.rb +34 -0
  550. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/default.rb +64 -0
  551. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/mongos.rb +46 -0
  552. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/replicaset.rb +31 -0
  553. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/recipes/shard.rb +41 -0
  554. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version-uri/ddb10eb171f8093fd208b02b177f6214/package/templates/default/mongodb.default.erb +21 -0
  555. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mongodb/version/0.11.0 +1 -0
  556. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/metadata.json +1 -0
  557. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/metadata.json +1 -0
  558. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package.tar.gz +0 -0
  559. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/CHANGELOG.md +130 -0
  560. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/CONTRIBUTING +29 -0
  561. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/Gemfile +8 -0
  562. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/LICENSE +201 -0
  563. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/README.md +227 -0
  564. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/attributes/client.rb +50 -0
  565. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/attributes/server.rb +240 -0
  566. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/files/default/tests/minitest/server_test.rb +36 -0
  567. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/files/default/tests/minitest/support/helpers.rb +11 -0
  568. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/libraries/helpers.rb +33 -0
  569. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/metadata.json +418 -0
  570. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/metadata.rb +140 -0
  571. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/recipes/client.rb +59 -0
  572. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/recipes/default.rb +20 -0
  573. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/recipes/ruby.rb +36 -0
  574. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/recipes/server.rb +221 -0
  575. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/recipes/server_ec2.rb +51 -0
  576. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/default/debian.cnf.erb +12 -0
  577. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/default/grants.sql.erb +15 -0
  578. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/default/my.cnf.erb +307 -0
  579. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/default/mysql-server.seed.erb +10 -0
  580. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/default/port_mysql.erb +3 -0
  581. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version-uri/7b8c50111f33aa7b4c55950c2773dbec/package/templates/windows/my.cnf.erb +61 -0
  582. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/mysql/version/2.1.2 +1 -0
  583. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/metadata.json +1 -0
  584. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/metadata.json +1 -0
  585. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package.tar.gz +0 -0
  586. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/CHANGELOG.md +3 -0
  587. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/CONTRIBUTING +29 -0
  588. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/LICENSE +201 -0
  589. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/README.md +37 -0
  590. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/libraries/secure_password.rb +37 -0
  591. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/metadata.json +30 -0
  592. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/metadata.rb +9 -0
  593. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version-uri/18e5393a9a1128ffa91a28ab8f576f16/package/recipes/default.rb +19 -0
  594. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/openssl/version/1.0.2 +1 -0
  595. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/metadata.json +1 -0
  596. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/metadata.json +1 -0
  597. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package.tar.gz +0 -0
  598. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/CHANGELOG.md +81 -0
  599. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/CONTRIBUTING.md +257 -0
  600. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/Gemfile +8 -0
  601. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/Gemfile.lock +145 -0
  602. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/LICENSE +201 -0
  603. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/README.md +448 -0
  604. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/Rakefile +17 -0
  605. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/attributes/default.rb +77 -0
  606. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/default/runit-2.1.1.tar.gz +0 -0
  607. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/default/runit.seed +1 -0
  608. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/default/runsvdir +0 -0
  609. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/ubuntu-6.10/runsvdir +6 -0
  610. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/ubuntu-7.04/runsvdir +7 -0
  611. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/ubuntu-7.10/runsvdir +7 -0
  612. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/files/ubuntu-8.04/runsvdir +7 -0
  613. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/libraries/default.rb +0 -0
  614. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/libraries/provider_runit_service.rb +434 -0
  615. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/libraries/resource_runit_service.rb +185 -0
  616. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/metadata.json +40 -0
  617. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/metadata.rb +15 -0
  618. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/recipes/default.rb +115 -0
  619. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/templates/debian/init.d.erb +66 -0
  620. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version-uri/9594f6a763869a82f81ffbb8d4c6523b/package/templates/gentoo/runit-start.sh.erb +32 -0
  621. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/runit/version/1.1.0 +1 -0
  622. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/metadata.json +1 -0
  623. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/metadata.json +1 -0
  624. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package.tar.gz +0 -0
  625. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/CHANGELOG.md +161 -0
  626. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/CONTRIBUTING +29 -0
  627. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/LICENSE +201 -0
  628. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/README.md +609 -0
  629. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/attributes/default.rb +22 -0
  630. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/files/default/handlers/windows_reboot_handler.rb +76 -0
  631. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/libraries/feature_base.rb +41 -0
  632. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/libraries/helper.rb +86 -0
  633. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/libraries/registry_helper.rb +357 -0
  634. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/libraries/version.rb +204 -0
  635. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/libraries/windows_privileged.rb +94 -0
  636. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/metadata.json +31 -0
  637. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/metadata.rb +9 -0
  638. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/auto_run.rb +32 -0
  639. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/batch.rb +62 -0
  640. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/feature_dism.rb +47 -0
  641. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/feature_servermanagercmd.rb +47 -0
  642. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/package.rb +251 -0
  643. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/pagefile.rb +153 -0
  644. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/path.rb +35 -0
  645. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/printer.rb +100 -0
  646. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/printer_port.rb +102 -0
  647. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/reboot.rb +31 -0
  648. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/registry.rb +72 -0
  649. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/shortcut.rb +56 -0
  650. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/task.rb +124 -0
  651. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/providers/zipfile.rb +91 -0
  652. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/recipes/default.rb +34 -0
  653. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/recipes/reboot_handler.rb +32 -0
  654. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/auto_run.rb +30 -0
  655. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/batch.rb +36 -0
  656. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/feature.rb +40 -0
  657. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/package.rb +46 -0
  658. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/pagefile.rb +29 -0
  659. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/path.rb +28 -0
  660. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/printer.rb +41 -0
  661. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/printer_port.rb +40 -0
  662. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/reboot.rb +29 -0
  663. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/registry.rb +33 -0
  664. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/shortcut.rb +35 -0
  665. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/task.rb +46 -0
  666. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version-uri/d397cdaf12ebdc0fa57a2847df7926e2/package/resources/zipfile.rb +33 -0
  667. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/windows/version/1.8.4 +1 -0
  668. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/metadata.json +1 -0
  669. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/metadata.json +1 -0
  670. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package.tar.gz +0 -0
  671. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/CHANGELOG.md +74 -0
  672. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/CONTRIBUTING.md +257 -0
  673. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/Gemfile +3 -0
  674. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/Gemfile.lock +131 -0
  675. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/LICENSE +201 -0
  676. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/README.md +255 -0
  677. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/attributes/default.rb +28 -0
  678. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/attributes/epel.rb +35 -0
  679. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/attributes/remi.rb +28 -0
  680. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/metadata.json +100 -0
  681. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/metadata.rb +37 -0
  682. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/providers/key.rb +78 -0
  683. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/providers/repository.rb +120 -0
  684. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/default.rb +18 -0
  685. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/epel.rb +32 -0
  686. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/ius.rb +40 -0
  687. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/remi.rb +33 -0
  688. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/repoforge.rb +48 -0
  689. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/recipes/yum.rb +23 -0
  690. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/resources/key.rb +29 -0
  691. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/resources/repository.rb +38 -0
  692. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/templates/default/repo.erb +29 -0
  693. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/templates/default/yum-rhel5.conf.erb +33 -0
  694. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version-uri/ce171d405d0310cb10d0c12aa82966fc/package/templates/default/yum-rhel6.conf.erb +36 -0
  695. data/tmp/librarian/cache/source/chef/site/877777683730772c36b1e6a3fc3aa2c3/yum/version/2.1.0 +1 -0
  696. data/tmp/librarian/cache/source/git/31f7486b514b4c4131e5c38ed03e3b16/README.md +30 -0
  697. data/tmp/librarian/cache/source/git/31f7486b514b4c4131e5c38ed03e3b16/libraries/ip_location.rb +74 -0
  698. data/tmp/librarian/cache/source/git/31f7486b514b4c4131e5c38ed03e3b16/metadata.rb +6 -0
  699. data/tmp/librarian/cache/source/git/31f7486b514b4c4131e5c38ed03e3b16/recipes/default.rb +18 -0
  700. data/vagrant-openstack.gemspec +55 -0
  701. metadata +812 -0
@@ -0,0 +1,161 @@
1
+ ## Future
2
+
3
+ * package preseeding/response_file support
4
+ * package installation location via a `target_dir` attribute.
5
+ * [COOK-666] `windows_package` should support CoApp packages
6
+ * windows_registry :force_modify action should use RegNotifyChangeKeyValue from WinAPI
7
+ * WindowsRebootHandler/`windows_reboot` LWRP should support kicking off subsequent chef run on reboot.
8
+
9
+ ## v1.8.4:
10
+
11
+ * [COOK-2336] - MSI That requires reboot returns with RC 3010 and
12
+ causes chef run failure
13
+ * [COOK-2368] - `version` attribute of the `windows_package` provider
14
+ should be documented
15
+
16
+ ## v1.8.2:
17
+
18
+ **Important**: Use powershell in nodes expanded run lists to ensure
19
+ powershell is downloaded, as powershell has a dependency on this
20
+ cookbook; v1.8.0 created a circular dependency.
21
+
22
+ * [COOK-2301] - windows 1.8.0 has circular dependency on powershell
23
+
24
+ ## v1.8.0:
25
+
26
+ * [COOK-2126] - Add checksum attribute to windows_zipfile
27
+ * [COOK-2142] - Add printer and printer_port LWRPs
28
+ * [COOK-2149] - Chef::Log.debug Windows Package command line
29
+ * [COOK-2155] -`windows_package` does not send checksum to
30
+ `cached_file` in `installer_type`
31
+
32
+ ## v1.7.0:
33
+
34
+ * [COOK-1745] - allow for newer versions of rubyzip
35
+
36
+ ## v1.6.0:
37
+
38
+ * [COOK-2048] - undefined method for Falseclass on task :change when
39
+ action is :nothing (and task doesn't exist)
40
+ * [COOK-2049] - Add `windows_pagefile` resource
41
+
42
+ ## v1.5.0:
43
+
44
+ * [COOK-1251] - Fix LWRP "NotImplementedError"
45
+ * [COOK-1921] - Task LWRP will return true for resource exists when no
46
+ other scheduled tasks exist
47
+ * [COOK-1932] - Include :change functionality to windows task lwrp
48
+
49
+ ## v1.4.0:
50
+
51
+ * [COOK-1571] - windows_package resource (with msi provider) does not
52
+ accept spaces in filename
53
+ * [COOK-1581] - Windows cookbook needs a scheduled tasks LWRP
54
+ * [COOK-1584] - `windows_registry` should support all registry types
55
+
56
+ ## v1.3.4:
57
+
58
+ * [COOK-1173] - windows_registry throws Win32::Registry::Error for
59
+ action :remove on a nonexistent key
60
+ * [COOK-1182] - windows package sets start window title instead of
61
+ quoting a path
62
+ * [COOK-1476] - zipfile lwrp should support :zip action
63
+ * [COOK-1485] - package resource fails to perform install correctly
64
+ when "source" contains quote
65
+ * [COOK-1519] - add action :remove for path lwrp
66
+
67
+ ## v1.3.2:
68
+
69
+ * [COOK-1033] - remove the `libraries/ruby_19_patches.rb` file which
70
+ causes havoc on non-Windows systems.
71
+ * [COOK-811] - add a timeout parameter attribute for `windows_package`
72
+
73
+ ## v1.3.0:
74
+
75
+ * [COOK-1323] - Update for changes in Chef 0.10.10.
76
+ - Setting file mode doesn't make sense on Windows (package provider
77
+ - and reboot_handler recipe)
78
+ - Prefix ::Win32 to avoid namespace collision with Chef::Win32
79
+ - (registry_helper library)
80
+ - Use chef_gem instead of gem_package so gems get installed correctly
81
+ under the Ruby environment Chef runs in (reboot_handler recipe,
82
+ zipfile provider)
83
+
84
+ ## v1.2.12:
85
+
86
+ * [COOK-1037] - specify version for rubyzip gem
87
+ * [COOK-1007] - windows_feature does not work to remove features with
88
+ dism
89
+ * [COOK-667] - shortcut resource + provider for Windows platforms
90
+
91
+ ## v1.2.10
92
+
93
+ * [COOK-939] - add `type` parameter to `windows_registry` to allow binary registry keys.
94
+ * [COOK-940] - refactor logic so multiple values get created.
95
+
96
+ ## v1.2.8
97
+
98
+ * FIX: Older Windows (Windows Server 2003) sometimes return 127 on successful forked commands
99
+ * FIX: `windows_package`, ensure we pass the WOW* registry redirection flags into reg.open
100
+
101
+ ## v1.2.6
102
+
103
+ * patch to fix [CHEF-2684], Open4 is named Open3 in Ruby 1.9
104
+ * Ruby 1.9's Open3 returns 0 and 42 for successful commands
105
+ * retry keyword can only be used in a rescue block in Ruby 1.9
106
+
107
+ ## v1.2.4
108
+
109
+ * windows_package - catch Win32::Registry::Error that pops up when searching certain keys
110
+
111
+ ## v1.2.2
112
+
113
+ * combined numerous helper libarires for easier sharing across libaries/LWRPs
114
+ * renamed Chef::Provider::WindowsFeature::Base file to the more descriptive `feature_base.rb`
115
+ * refactored windows_path LWRP
116
+ * :add action should MODIFY the the underlying ENV variable (vs CREATE)
117
+ * deleted greedy :remove action until it could be made more idempotent
118
+ * added a windows_batch resource/provider for running batch scripts remotely
119
+
120
+ ## v1.2.0
121
+
122
+ * [COOK-745] gracefully handle required server restarts on Windows platform
123
+ * WindowsRebootHandler for requested and pending reboots
124
+ * windows_reboot LWRP for requesting (receiving notifies) reboots
125
+ * reboot_handler recipe for enabling WindowsRebootHandler as a report handler
126
+ * [COOK-714] Correct initialize misspelling
127
+ * RegistryHelper - new `get_values` method which returns all values for a particular key.
128
+
129
+ ## v1.0.8
130
+
131
+ * [COOK-719] resource/provider for managing windows features
132
+ * [COOK-717] remove `windows_env_vars` resource as env resource exists in core chef
133
+ * new `Windows::Version` helper class
134
+ * refactored `Windows::Helper` mixin
135
+
136
+ ## v1.0.6
137
+
138
+ * added `force_modify` action to `windows_registry` resource
139
+ * add `win_friendly_path` helper
140
+ * re-purpose default recipe to install useful supporting windows related gems
141
+
142
+ ## v1.0.4
143
+
144
+ * [COOK-700] new resources and improvements to the `windows_registry` provider (thanks Paul Morton!)
145
+ * Open the registry in the bitednes of the OS
146
+ * Provide convenience methods to check if keys and values exit
147
+ * Provide convenience method for reading registry values
148
+ * NEW - `windows_auto_run` resource/provider
149
+ * NEW - `windows_env_vars` resource/provider
150
+ * NEW - `windows_path` resource/provider
151
+ * re-write of the windows_package logic for determining current installed packages
152
+ * new checksum attribute for windows_package resource...useful for remote packages
153
+
154
+ ## v1.0.2:
155
+
156
+ * [COOK-647] account for Wow6432Node registry redirecter
157
+ * [COOK-656] begin/rescue on win32/registry
158
+
159
+ ## 1.0.0:
160
+
161
+ * [COOK-612] initial release
@@ -0,0 +1,29 @@
1
+ If you would like to contribute, please open a ticket in JIRA:
2
+
3
+ * http://tickets.opscode.com
4
+
5
+ Create the ticket in the COOK project and use the cookbook name as the
6
+ component.
7
+
8
+ For all code contributions, we ask that contributors sign a
9
+ contributor license agreement (CLA). Instructions may be found here:
10
+
11
+ * http://wiki.opscode.com/display/chef/How+to+Contribute
12
+
13
+ When contributing changes to individual cookbooks, please do not
14
+ modify the version number in the metadata.rb. Also please do not
15
+ update the CHANGELOG.md for a new version. Not all changes to a
16
+ cookbook may be merged and released in the same versions. Opscode will
17
+ handle the version updates during the release process. You are welcome
18
+ to correct typos or otherwise make updates to documentation in the
19
+ README.
20
+
21
+ If a contribution adds new platforms or platform versions, indicate
22
+ such in the body of the commit message(s), and update the relevant
23
+ COOK ticket. When writing commit messages, it is helpful for others if
24
+ you indicate the COOK ticket. For example:
25
+
26
+ git commit -m '[COOK-1041] Updated pool resource to correctly delete.'
27
+
28
+ In the ticket itself, it is also helpful if you include log output of
29
+ a successful Chef run, but this is not absolutely required.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,609 @@
1
+ Description
2
+ ===========
3
+
4
+ Provides a set of Windows-specific primitives (Chef resources) meant to aid in the creation of cookbooks/recipes targeting the Windows platform.
5
+
6
+ Requirements
7
+ ============
8
+
9
+ Version 1.3.0+ of this cookbook requires Chef 0.10.10+.
10
+
11
+ Platform
12
+ --------
13
+
14
+ * Windows XP
15
+ * Windows Vista
16
+ * Windows Server 2003 R2
17
+ * Windows 7
18
+ * Windows Server 2008 (R1, R2)
19
+
20
+ The `windows_task` LWRP requires Windows Server 2008 due to its API usage.
21
+
22
+ Cookbooks
23
+ ---------
24
+
25
+ The following cookbooks provided by Opscode are required as noted:
26
+
27
+ * chef_handler (`windows::reboot_handler` leverages the chef_handler LWRP)
28
+ * powershell - The Printer and Printer Port LWRP require Powershell.
29
+
30
+ **NOTE** We cannot specifically depend on Opscode's powershell,
31
+ because powershell depends on this cookbook. Ensure that
32
+ `recipe[powershell]` exists in the node's expanded run list so it
33
+ gets downloaded where the printer LWRPs are used.
34
+
35
+ Attributes
36
+ ==========
37
+
38
+ * `node['windows']['allow_pending_reboots']` - used to configure the `WindowsRebootHandler` (via the `windows::reboot_handler` recipe) to act on pending reboots. default is true (ie act on pending reboots). The value of this attribute only has an effect if the `windows::reboot_handler` is in a node's run list.
39
+
40
+ Resource/Provider
41
+ =================
42
+
43
+ windows\_auto\_run
44
+ ------------------
45
+
46
+ ### Actions
47
+
48
+ - :create: Create an item to be run at login
49
+ - :remove: Remove an item that was previously setup to run at login
50
+
51
+ ### Attribute Parameters
52
+
53
+ - :name: Name attribute. The name of the value to be stored in the registry
54
+ - :program: The program to be run at login
55
+ - :args: The arguments for the program
56
+
57
+ ### Examples
58
+
59
+ # Run BGInfo at login
60
+ windows_auto_run 'BGINFO' do
61
+ program "C:/Sysinternals/bginfo.exe"
62
+ args "\"C:/Sysinternals/Config.bgi\" /NOLICPROMPT /TIMER:0"
63
+ not_if { Registry.value_exists?(AUTO_RUN_KEY, 'BGINFO') }
64
+ action :create
65
+ end
66
+
67
+
68
+ windows\_batch
69
+ --------------
70
+
71
+ Execute a batch script using the cmd.exe interpreter (much like the script resources for bash, csh, powershell, perl, python and ruby). A temporary file is created and executed like other script resources, rather than run inline. By their nature, Script resources are not idempotent, as they are completely up to the user's imagination. Use the `not_if` or `only_if` meta parameters to guard the resource for idempotence.
72
+
73
+ ### Actions
74
+
75
+ - :run: run the batch file
76
+
77
+ ### Attribute Parameters
78
+
79
+ - command: name attribute. Name of the command to execute.
80
+ - code: quoted string of code to execute.
81
+ - creates: a file this command creates - if the file exists, the command will not be run.
82
+ - cwd: current working directory to run the command from.
83
+ - flags: command line flags to pass to the interpreter when invoking.
84
+ - user: A user name or user ID that we should change to before running this command.
85
+ - group: A group name or group ID that we should change to before running this command.
86
+
87
+ ### Examples
88
+
89
+ windows_batch "unzip_and_move_ruby" do
90
+ code <<-EOH
91
+ 7z.exe x #{Chef::Config[:file_cache_path]}/ruby-1.8.7-p352-i386-mingw32.7z -oC:\\source -r -y
92
+ xcopy C:\\source\\ruby-1.8.7-p352-i386-mingw32 C:\\ruby /e /y
93
+ EOH
94
+ end
95
+
96
+ windows_batch "echo some env vars" do
97
+ code <<-EOH
98
+ echo %TEMP%
99
+ echo %SYSTEMDRIVE%
100
+ echo %PATH%
101
+ echo %WINDIR%
102
+ EOH
103
+ end
104
+
105
+ windows\_feature
106
+ ----------------
107
+
108
+ Windows Roles and Features can be thought of as built-in operating system packages that ship with the OS. A server role is a set of software programs that, when they are installed and properly configured, lets a computer perform a specific function for multiple users or other computers within a network. A Role can have multiple Role Services that provide functionality to the Role. Role services are software programs that provide the functionality of a role. Features are software programs that, although they are not directly parts of roles, can support or augment the functionality of one or more roles, or improve the functionality of the server, regardless of which roles are installed. Collectively we refer to all of these attributes as 'features'.
109
+
110
+ This resource allows you to manage these 'features' in an unattended, idempotent way.
111
+
112
+ There are two providers for the `windows_features` which map into Microsoft's two major tools for managing roles/features: [Deployment Image Servicing and Management (DISM)](http://msdn.microsoft.com/en-us/library/dd371719(v=vs.85).aspx) and [Servermanagercmd](http://technet.microsoft.com/en-us/library/ee344834(WS.10).aspx) (The CLI for Server Manager). As Servermanagercmd is deprecated, Chef will set the default provider to `Chef::Provider::WindowsFeature::DISM` if DISM is present on the system being configured. The default provider will fall back to `Chef::Provider::WindowsFeature::ServerManagerCmd`.
113
+
114
+ For more information on Roles, Role Services and Features see the [Microsoft TechNet article on the topic](http://technet.microsoft.com/en-us/library/cc754923.aspx). For a complete list of all features that are available on a node type either of the following commands at a command prompt:
115
+
116
+ dism /online /Get-Features
117
+ servermanagercmd -query
118
+
119
+ ### Actions
120
+
121
+ - :install: install a Windows role/feature
122
+ - :remove: remove a Windows role/feature
123
+
124
+ ### Attribute Parameters
125
+
126
+ - feature_name: name of the feature/role to install. The same feature may have different names depending on the provider used (ie DHCPServer vs DHCP; DNS-Server-Full-Role vs DNS).
127
+
128
+ ### Providers
129
+
130
+ - **Chef::Provider::WindowsFeature::DISM**: Uses Deployment Image Servicing and Management (DISM) to manage roles/features.
131
+ - **Chef::Provider::WindowsFeature::ServerManagerCmd**: Uses Server Manager to manage roles/features.
132
+
133
+ ### Examples
134
+
135
+ # enable the node as a DHCP Server
136
+ windows_feature "DHCPServer" do
137
+ action :install
138
+ end
139
+
140
+ # enable TFTP
141
+ windows_feature "TFTP" do
142
+ action :install
143
+ end
144
+
145
+ # disable Telnet client/server
146
+ %w{ TelnetServer TelnetClient }.each do |feature|
147
+ windows_feature feature do
148
+ action :remove
149
+ end
150
+ end
151
+
152
+ windows\_package
153
+ ----------------
154
+
155
+ Manage Windows application packages in an unattended, idempotent way.
156
+
157
+ The following application installers are currently supported:
158
+
159
+ * MSI packages
160
+ * InstallShield
161
+ * Wise InstallMaster
162
+ * Inno Setup
163
+ * Nullsoft Scriptable Install System
164
+
165
+ If the proper installer type is not passed into the resource's installer_type attribute, the provider will do it's best to identify the type by introspecting the installation package. If the installation type cannot be properly identified the `:custom` value can be passed into the installer_type attribute along with the proper flags for silent/quiet installation (using the `options` attribute..see example below).
166
+
167
+ __PLEASE NOTE__ - For proper idempotence the resource's `package_name` should be the same as the 'DisplayName' registry value in the uninstallation data that is created during package installation. The easiest way to definitively find the proper 'DisplayName' value is to install the package on a machine and search for the uninstall information under the following registry keys:
168
+
169
+ * `HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall`
170
+ * `HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall`
171
+ * `HKEY_LOCAL_MACHINE\Software\Wow6464Node\Microsoft\Windows\CurrentVersion\Uninstall`
172
+
173
+ For maximum flexibility the `source` attribute supports both remote and local installation packages.
174
+
175
+ ### Actions
176
+
177
+ - :install: install a package
178
+ - :remove: remove a package. The remove action is completely hit or miss as many application uninstallers do not support a full silent/quiet mode.
179
+
180
+ ### Attribute Parameters
181
+
182
+ - package_name: name attribute. The 'DisplayName' of the application installation package.
183
+ - source: The source of the windows installer. This can either be a URI or a local path.
184
+ - installer_type: They type of windows installation package. valid values are: :msi, :inno, :nsis, :wise, :installshield, :custom. If this value is not provided, the provider will do it's best to identify the installer type through introspection of the file.
185
+ - checksum: useful if source is remote, the SHA-256 checksum of the file--if the local file matches the checksum, Chef will not download it
186
+ - options: Additional options to pass the underlying installation command
187
+ - timeout: set a timeout for the package download (default 600 seconds)
188
+ - version: The version number of this package, as indicated by the 'DisplayVersion' value in one of the 'Uninstall' registry keys. If the given version number does equal the 'DisplayVersion' in the registry, the package will be installed.
189
+ - success_codes: set an array of possible successful installation
190
+ return codes. Previously this was hardcoded, but certain MSIs may
191
+ have a different return code, e.g. 3010 for reboot required. Must be
192
+ an array, and defaults to `[0, 42, 127]`.
193
+
194
+ ### Examples
195
+
196
+ # install PuTTY (InnoSetup installer)
197
+ windows_package "PuTTY version 0.60" do
198
+ source "http://the.earth.li/~sgtatham/putty/latest/x86/putty-0.60-installer.exe"
199
+ installer_type :inno
200
+ action :install
201
+ end
202
+
203
+ # install 7-Zip (MSI installer)
204
+ windows_package "7-Zip 9.20 (x64 edition)" do
205
+ source "http://downloads.sourceforge.net/sevenzip/7z920-x64.msi"
206
+ action :install
207
+ end
208
+
209
+ # install Notepad++ (Y U No Emacs?) using a local installer
210
+ windows_package "Notepad++" do
211
+ source "c:/installation_files/npp.5.9.2.Installer.exe"
212
+ action :install
213
+ end
214
+
215
+ # install VLC for that Xvid (NSIS installer)
216
+ windows_package "VLC media player 1.1.10" do
217
+ source "http://superb-sea2.dl.sourceforge.net/project/vlc/1.1.10/win32/vlc-1.1.10-win32.exe"
218
+ action :install
219
+ end
220
+
221
+ # install Firefox as custom installer and manually set the silent install flags
222
+ windows_package "Mozilla Firefox 5.0 (x86 en-US)" do
223
+ source "http://archive.mozilla.org/pub/mozilla.org/mozilla.org/firefox/releases/5.0/win32/en-US/Firefox%20Setup%205.0.exe"
224
+ options "-ms"
225
+ installer_type :custom
226
+ action :install
227
+ end
228
+
229
+ # Google Chrome FTW (MSI installer)
230
+ windows_package "Google Chrome" do
231
+ source "https://dl-ssl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B806F36C0-CB54-4A84-A3F3-0CF8A86575E0%7D%26lang%3Den%26browser%3D3%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dfalse/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi"
232
+ action :install
233
+ end
234
+
235
+ # remove Google Chrome (but why??)
236
+ windows_package "Google Chrome" do
237
+ action :remove
238
+ end
239
+
240
+ # remove 7-Zip
241
+ windows_package "7-Zip 9.20 (x64 edition)" do
242
+ action :remove
243
+ end
244
+
245
+
246
+ windows\_printer\_port
247
+ ----------------------
248
+
249
+ **Note** Include `recipe[powershell]` on the node's expanded run list
250
+ to ensure the powershell cookbook is downloaded to avoid circular
251
+ dependency.
252
+
253
+ Create and delete TCP/IPv4 printer ports.
254
+
255
+ ### Actions
256
+
257
+ - :create: Create a TCIP/IPv4 printer port. This is the default action.
258
+ - :delete: Delete a TCIP/IPv4 printer port
259
+
260
+ ### Attribute Parameters
261
+
262
+ - :ipv4_address: Name attribute. Required. IPv4 address, e.g. "10.0.24.34"
263
+ - :port_name: Port name. Optional. Defaults to "IP_" + :ipv4_address
264
+ - :port_number: Port number. Optional. Defaults to 9100.
265
+ - :port_description: Port description. Optional.
266
+ - :snmp_enabled: Boolean. Optional. Defaults to false.
267
+ - :port_protocol: Port protocol, 1 (RAW), or 2 (LPR). Optional. Defaults to 1.
268
+
269
+ ### Examples
270
+
271
+ # simplest example. Creates a TCP/IP printer port named "IP_10.4.64.37"
272
+ # with all defaults
273
+ windows_printer_port '10.4.64.37' do
274
+ end
275
+
276
+ # delete a printer port
277
+ windows_printer_port '10.4.64.37' do
278
+ action :delete
279
+ end
280
+
281
+ # delete a port with a custom port_name
282
+ windows_printer_port '10.4.64.38' do
283
+ port_name "My awesome port"
284
+ action :delete
285
+ end
286
+
287
+ # Create a port with more options
288
+ windows_printer_port '10.4.64.39' do
289
+ port_name "My awesome port"
290
+ snmp_enabled true
291
+ port_protocol 2
292
+ end
293
+
294
+
295
+ windows\_printer
296
+ ----------------
297
+
298
+ **Note** Include `recipe[powershell]` on the node's expanded run list
299
+ to ensure the powershell cookbook is downloaded to avoid circular
300
+ dependency.
301
+
302
+ Create Windows printer. Note that this doesn't currently install a printer
303
+ driver. You must already have the driver installed on the system.
304
+
305
+ The Windows Printer LWRP will automatically create a TCP/IP printer port for you using the `ipv4_address` property. If you want more granular control over the printer port, just create it using the `windows_printer_port` LWRP before creating the printer.
306
+
307
+ ### Actions
308
+
309
+ - :create: Create a new printer
310
+ - :delete: Delete a new printer
311
+
312
+ ### Attribute Parameters
313
+
314
+ - :device_id: Name attribute. Required. Printer queue name, e.g. "HP LJ 5200 in fifth floor copy room"
315
+ - :comment: Optional string describing the printer queue.
316
+ - :default: Boolean. Optional. Defaults to false. Note that Windows sets the first printer defined to the default printer regardless of this setting.
317
+ - :driver_name: String. Required. Exact name of printer driver. Note that the printer driver must already be installed on the node.
318
+ - :location: Printer location, e.g. "Fifth floor copy room", or "US/NYC/Floor42/Room4207"
319
+ - :shared: Boolean. Defaults to false.
320
+ - :share_name: Printer share name.
321
+ - :ipv4_address: Printer IPv4 address, e.g. "10.4.64.23". You don't have to be able to ping the IP addresss to set it. Required.
322
+
323
+
324
+ ### Examples
325
+
326
+ # create a printer
327
+ windows_printer 'HP LaserJet 5th Floor' do
328
+ driver_name 'HP LaserJet 4100 Series PCL6'
329
+ ipv4_address '10.4.64.38'
330
+ end
331
+
332
+ # delete a printer
333
+ # Note: this doesn't delete the associated printer port.
334
+ # See `windows_printer_port` above for how to delete the port.
335
+ windows_printer 'HP LaserJet 5th Floor' do
336
+ action :delete
337
+ end
338
+
339
+
340
+ windows\_reboot
341
+ ---------------
342
+
343
+ Sets required data in the node's run_state to notify `WindowsRebootHandler` a reboot is requested. If Chef run completes successfully a reboot will occur if the `WindowsRebootHandler` is properly registered as a report handler. As an action of `:request` will cause a node to reboot every Chef run, this resource is usually notified by other resources...ie restart node after a package is installed (see example below).
344
+
345
+ ### Actions
346
+
347
+ - :request: requests a reboot at completion of successful Cher run. requires `WindowsRebootHandler` to be registered as a report handler.
348
+ - :cancel: remove reboot request from node.run_state. this will cancel *ALL* previously requested reboots as this is a binary state.
349
+
350
+ ### Attribute Parameters
351
+
352
+ - :timeout: Name attribute. timeout delay in seconds to wait before proceeding with the requested reboot. default is 60 seconds
353
+ - :reason: comment on the reason for the reboot. default is 'Opscode Chef initiated reboot'
354
+
355
+ ### Examples
356
+
357
+ # if the package installs, schedule a reboot at end of chef run
358
+ windows_reboot 60 do
359
+ reason 'cause chef said so'
360
+ action :nothing
361
+ end
362
+ windows_package 'some_package' do
363
+ action :install
364
+ notifies :request, 'windows_reboot[60]'
365
+ end
366
+
367
+ # cancel the previously requested reboot
368
+ windows_reboot 60 do
369
+ action :cancel
370
+ end
371
+
372
+ windows\_registry
373
+ -----------------
374
+
375
+ Creates and modifies Windows registry keys.
376
+
377
+ *Change in v1.3.0: The Win32 classes use `::Win32` to avoid namespace conflict with `Chef::Win32` (introduced in Chef 0.10.10).*
378
+
379
+ ### Actions
380
+
381
+ - :create: create a new registry key with the provided values.
382
+ - :modify: modify an existing registry key with the provided values.
383
+ - :force_modify: modify an existing registry key with the provided values. ensures the value is actually set by checking multiple times. useful for fighting race conditions where two processes are trying to set the same registry key. This will be updated in the near future to use 'RegNotifyChangeKeyValue' which is exposed by the WinAPI and allows a process to register for notification on a registry key change.
384
+ - :remove: removes a value from an existing registry key
385
+
386
+ ### Attribute Parameters
387
+
388
+ - key_name: name attribute. The registry key to create/modify.
389
+ - values: hash of the values to set under the registry key. The individual hash items will become respective 'Value name' => 'Value data' items in the registry key.
390
+ - type: Type of key to create, defaults to REG_SZ. Must be a symbol, see the overview below for valid values.
391
+
392
+ ### Registry key types
393
+
394
+ - :binary: REG_BINARY
395
+ - :string: REG_SZ
396
+ - :multi_string: REG_MULTI_SZ
397
+ - :expand_string: REG_EXPAND_SZ
398
+ - :dword: REG_DWORD
399
+ - :dword_big_endian: REG_DWORD_BIG_ENDIAN
400
+ - :qword: REG_QWORD
401
+
402
+ ### Examples
403
+
404
+ # make the local windows proxy match the one set for Chef
405
+ proxy = URI.parse(Chef::Config[:http_proxy])
406
+ windows_registry 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' do
407
+ values 'ProxyEnable' => 1, 'ProxyServer' => "#{proxy.host}:#{proxy.port}", 'ProxyOverride' => '<local>'
408
+ end
409
+
410
+ # enable Remote Desktop and poke the firewall hole
411
+ windows_registry 'HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server' do
412
+ values 'FdenyTSConnections' => 0
413
+ end
414
+
415
+ # Delete an item from the registry
416
+ windows_registry 'HKCU\Software\Test' do
417
+ #Key is the name of the value that you want to delete the value is always empty
418
+ values 'ValueToDelete' => ''
419
+ action :remove
420
+ end
421
+
422
+ # Add a REG_MULTI_SZ value to the registry
423
+ windows_registry 'HKCU\Software\Test' do
424
+ values 'MultiString' => ['line 1', 'line 2', 'line 3']
425
+ type :multi_string
426
+ end
427
+
428
+ ### Library Methods
429
+
430
+ Registry.value_exists?('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run','BGINFO')
431
+ Registry.key_exists?('HKLM\SOFTWARE\Microsoft')
432
+ BgInfo = Registry.get_value('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run','BGINFO')
433
+
434
+ windows\_path
435
+ -------------
436
+
437
+ ### Actions
438
+
439
+ - :add: Add an item to the system path
440
+ - :remove: Remove an item from the system path
441
+
442
+ ### Attribute Parameters
443
+
444
+ - :path: Name attribute. The name of the value to add to the system path
445
+
446
+ ### Examples
447
+
448
+ #Add Sysinternals to the system path
449
+ windows_path 'C:\Sysinternals' do
450
+ action :add
451
+ end
452
+
453
+ #Remove 7-Zip from the system path
454
+ windows_path 'C:\7-Zip' do
455
+ action :remove
456
+ end
457
+
458
+ windows\_task
459
+ -------------
460
+
461
+ Creates, deletes or runs a Windows scheduled task. Requires Windows
462
+ Server 2008 due to API usage.
463
+
464
+ ### Actions
465
+
466
+ - :create: creates a task
467
+ - :delete: deletes a task
468
+ - :run: runs a task
469
+ - :change: changes the un/pw or command of a task
470
+
471
+ ### Attribute Parameters
472
+
473
+ - name: name attribute, The task name.
474
+ - command: The command the task will run.
475
+ - cwd: The directory the task will be run from.
476
+ - user: The user to run the task as. (requires password)
477
+ - password: The user's password. (requires user)
478
+ - run_level: Run with limited or highest privileges.
479
+ - frequency: Frequency with which to run the task. (hourly, daily, ect.)
480
+ - frequency_modifier: Multiple for frequency. (15 minutes, 2 days)
481
+
482
+ ### Examples
483
+
484
+ # Run Chef every 15 minutes
485
+ windows_task "Chef client" do
486
+ user "Administrator"
487
+ password "$ecR3t"
488
+ cwd "C:\chef\bin"
489
+ command "chef-client -L C:\tmp\"
490
+ run_level :highest
491
+ frequency :minute
492
+ frequency_modifier 15
493
+ end
494
+
495
+ # Update Chef Client task with new password and log location
496
+ windows_task "Chef client" do
497
+ user "Administrator"
498
+ password "N3wPassW0Rd"
499
+ cwd "C:\chef\bin"
500
+ command "chef-client -L C:\chef\logs\"
501
+ action :change
502
+ end
503
+
504
+ # Delete a taks named "old task"
505
+ windows_task "old task" do
506
+ action :delete
507
+ end
508
+
509
+ windows\_zipfile
510
+ ----------------
511
+
512
+ Most version of Windows do not ship with native cli utility for managing compressed files. This resource provides a pure-ruby implementation for managing zip files. Be sure to use the `not_if` or `only_if` meta parameters to guard the resource for idempotence or action will be taken on the zip file every Chef run.
513
+
514
+ ### Actions
515
+
516
+ - :unzip: unzip a compressed file
517
+
518
+ ### Attribute Parameters
519
+
520
+ - path: name attribute. The path where files will be unzipped to.
521
+ - source: The source of the zip file. This can either be a URI or a local path.
522
+ - overwrite: force an overwrite of the files if the already exists.
523
+ - checksum: useful if source is remote, the SHA-256 checksum of the file--if the local file matches the checksum, Chef will not download it
524
+
525
+ ### Examples
526
+
527
+ # unzip a remote zip file locally
528
+ windows_zipfile "c:/bin" do
529
+ source "http://download.sysinternals.com/Files/SysinternalsSuite.zip"
530
+ action :unzip
531
+ not_if {::File.exists?("c:/bin/PsExec.exe")}
532
+ end
533
+
534
+ # unzip a local zipfile
535
+ windows_zipfile "c:/the_codez" do
536
+ source "c:/foo/baz/the_codez.zip"
537
+ action :unzip
538
+ end
539
+
540
+
541
+ Exception/Report Handlers
542
+ =========================
543
+
544
+ WindowsRebootHandler
545
+ --------------------
546
+
547
+ Required reboots are a necessary evil of configuring and managing Windows nodes. This report handler (ie fires at the end of successful Chef runs) acts on requested (Chef initiated) or pending (as determined by the OS per configuration action we performed) reboots. The `allow_pending_reboots` initialization argument should be set to false if you do not want the handler to automatically reboot a node if it has been determined a reboot is pending. Reboots can still be requested explicitly via the `windows_reboot` LWRP.
548
+
549
+ ## Initialization Arguments
550
+
551
+ - `allow_pending_reboots`: indicator on whether the handler should act on a the Window's 'pending reboot' state. default is true
552
+ - `timeout`: timeout delay in seconds to wait before proceeding with the reboot. default is 60 seconds
553
+ - `reason`: comment on the reason for the reboot. default is 'Opscode Chef initiated reboot'
554
+
555
+ Usage
556
+ =====
557
+
558
+ Place an explicit dependency on this cookbook (using depends in the cookbook's metadata.rb) from any cookbook where you would like to use the Windows-specific resources/providers that ship with this cookbook.
559
+
560
+ depends "windows"
561
+
562
+ default
563
+ -------
564
+
565
+ Convenience recipe that installs supporting gems for many of the resources/providers that ship with this cookbook.
566
+
567
+ *Change in v1.3.0: Uses chef_gem instead of gem_package to ensure gem installation in Chef 0.10.10.*
568
+
569
+ reboot\_handler
570
+ --------------
571
+
572
+ Leverages the `chef_handler` LWRP to register the `WindowsRebootHandler` report handler that ships as part of this cookbook. By default this handler is set to automatically act on pending reboots. If you would like to change this behavior override `node['windows']['allow_pending_reboots']` and set the value to false. For example:
573
+
574
+ % cat roles/base.rb
575
+ name "base"
576
+ description "base role"
577
+ override_attributes(
578
+ "windows" => {
579
+ "allow_pending_reboots" => false
580
+ }
581
+ )
582
+
583
+ This will still allow a reboot to be explicitly requested via the `windows_reboot` LWRP.
584
+
585
+ License and Author
586
+ ==================
587
+
588
+ Author:: Seth Chisamore (<schisamo@opscode.com>)
589
+ Author:: Doug MacEachern (<dougm@vmware.com>)
590
+ Author:: Paul Morton (<pmorton@biaprotect.com>)
591
+ Author:: Doug Ireton (<doug.ireton@nordstrom.com>)
592
+
593
+ Copyright:: 2011, Opscode, Inc.
594
+ Copyright:: 2010, VMware, Inc.
595
+ Copyright:: 2011, Business Intelligence Associates, Inc
596
+ Copyright:: 2012, Nordstrom, Inc.
597
+
598
+
599
+ Licensed under the Apache License, Version 2.0 (the "License");
600
+ you may not use this file except in compliance with the License.
601
+ You may obtain a copy of the License at
602
+
603
+ http://www.apache.org/licenses/LICENSE-2.0
604
+
605
+ Unless required by applicable law or agreed to in writing, software
606
+ distributed under the License is distributed on an "AS IS" BASIS,
607
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
608
+ See the License for the specific language governing permissions and
609
+ limitations under the License.