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,10 @@
1
+ source :rubygems
2
+
3
+ gem 'cucumber', '~> 1.2.0'
4
+ gem 'httparty', '~> 0.8.3'
5
+ gem 'minitest', '~> 3.0.0'
6
+ gem 'nokogiri', '~> 1.5.0'
7
+
8
+ group :kitchen do
9
+ gem 'test-kitchen', '< 1.0'
10
+ end
@@ -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,581 @@
1
+ Description
2
+ ===========
3
+
4
+ This cookbook provides a complete Debian/Ubuntu style Apache HTTPD
5
+ configuration. Non-Debian based distributions such as Red Hat/CentOS,
6
+ ArchLinux and others supported by this cookbook will have a
7
+ configuration that mimics Debian/Ubuntu style as it is easier to
8
+ manage with Chef.
9
+
10
+ Debian-style Apache configuration uses scripts to manage modules and
11
+ sites (vhosts). The scripts are:
12
+
13
+ * a2ensite
14
+ * a2dissite
15
+ * a2enmod
16
+ * a2dismod
17
+
18
+ This cookbook ships with templates of these scripts for non
19
+ Debian/Ubuntu platforms. The scripts are used in the __Definitions__
20
+ below.
21
+
22
+ Requirements
23
+ ============
24
+
25
+ ## Ohai and Chef:
26
+
27
+ * Ohai: 0.6.12+
28
+ * Chef: 0.10.10+
29
+
30
+ As of v1.2.0, this cookbook makes use of `node['platform_family']` to
31
+ simplify platform selection logic. This attribute was introduced in
32
+ Ohai v0.6.12. The recipe methods were introduced in Chef v0.10.10. If
33
+ you must run an older version of Chef or Ohai, use [version 1.1.16 of
34
+ this cookbook](http://community.opscode.com/cookbooks/apache2/versions/1_1_16/downloads).
35
+
36
+ ## Cookbooks:
37
+
38
+ This cookbook doesn't have direct dependencies on other cookbooks, as
39
+ none are needed for the default recipe or the general use cases.
40
+
41
+ Depending on your OS configuration and security policy, you may need
42
+ additional recipes or cookbooks for this cookbook's recipes to
43
+ converge on the node. In particular, the following Operating System
44
+ settings may affect the behavior of this cookbook:
45
+
46
+ * apt cache outdated
47
+ * SELinux enabled
48
+ * IPtables
49
+ * Compile tools
50
+ * 3rd party repositories
51
+
52
+ On Ubuntu/Debian, use Opscode's `apt` cookbook to ensure the package
53
+ cache is updated so Chef can install packages, or consider putting
54
+ apt-get in your bootstrap process or
55
+ [knife bootstrap template](http://wiki.opscode.com/display/chef/Knife+Bootstrap).
56
+
57
+ On RHEL, SELinux is enabled by default. The `selinux` cookbook
58
+ contains a `permissive` recipe that can be used to set SELinux to
59
+ "Permissive" state. Otherwise, additional recipes need to be created
60
+ by the user to address SELinux permissions.
61
+
62
+ The easiest but **certainly not ideal way** to deal with IPtables is
63
+ to flush all rules. Opscode does provide an `iptables` cookbook but is
64
+ migrating from the approach used there to a more robust solution
65
+ utilizing a general "firewall" LWRP that would have an "iptables"
66
+ provider. Alternately, you can use ufw, with Opscode's `ufw` and
67
+ `firewall` cookbooks to set up rules. See those cookbooks' READMEs for
68
+ documentation.
69
+
70
+ Build/compile tools may not be installed on the system by default.
71
+ Some recipes (e.g., `apache2::mod_auth_openid`) build the module from
72
+ source. Use Opscode's `build-essential` cookbook to get essential
73
+ build packages installed.
74
+
75
+ On ArchLinux, if you are using the `apache2::mod_auth_openid` recipe,
76
+ you also need the `pacman` cookbook for the `pacman_aur` LWRP. Put
77
+ `recipe[pacman]` on the node's expanded run list (on the node or in a
78
+ role). This is not an explicit dependency because it is only required
79
+ for this single recipe and platform; the pacman default recipe
80
+ performs `pacman -Sy` to keep pacman's package cache updated.
81
+
82
+ The `apache2::god_monitor` recipe uses a definition from the `god`
83
+ cookbook. Include `recipe[god]` in the node's expanded run list to
84
+ ensure that the cookbook is available to the node, and to set up `god`.
85
+
86
+ ## Platforms:
87
+
88
+ The following platforms and versions are tested and supported using
89
+ Opscode's [test-kitchen](http://github.com/opscode/test-kitchen).
90
+
91
+ * Ubuntu 10.04, 12.04
92
+ * CentOS 5.8, 6.3
93
+
94
+ The following platform families are supported in the code, and are
95
+ assumed to work based on the successful testing on Ubuntu and CentOS.
96
+
97
+ * Debian
98
+ * Red Hat (rhel)
99
+ * Fedora
100
+ * Amazon Linux
101
+
102
+ The following platforms are also supported in the code, have been
103
+ tested manually but are not tested under test-kitchen.
104
+
105
+ * SUSE/OpenSUSE
106
+ * ArchLinux
107
+ * FreeBSD
108
+
109
+ ### Notes for RHEL Family:
110
+
111
+ On Red Hat Enterprise Linux and derivatives, the EPEL repository may
112
+ be necessary to install packages used in certain recipes. The
113
+ `apache2::default` recipe, however, does not require any additional
114
+ repositories. Opscode's `yum` cookbook contains a recipe to add the
115
+ EPEL repository. See __Examples__ for more information.
116
+
117
+ ### Notes for FreeBSD:
118
+
119
+ The `apache2::mod_php5` recipe depends on the `freebsd` cookbook,
120
+ which it uses to set the correct options for compiling the `php5` port
121
+ from sources. You need to ensure the `freebsd` is in the expanded run
122
+ list, or this recipe will fail. We don't set an explicit dependency
123
+ because we feel the `freebsd` cookbook is something users would want
124
+ on their nodes, and due to the generality of this cookbook we don't
125
+ want additional specific dependencies.
126
+
127
+ Tests
128
+ =====
129
+
130
+ This cookbook in the
131
+ [source repository](https://github.com/opscode-cookbooks/apache2)
132
+ contains minitest and cucumber tests. This is an initial proof of
133
+ concept that will be fleshed out with more supporting infrastructure
134
+ at a future time.
135
+
136
+ Please see the CONTRIBUTING file for information on how to add tests
137
+ for your contributions.
138
+
139
+ Attributes
140
+ ==========
141
+
142
+ This cookbook uses many attributes, broken up into a few different
143
+ kinds.
144
+
145
+ Platform specific
146
+ -----------------
147
+
148
+ In order to support the broadest number of platforms, several
149
+ attributes are determined based on the node's platform. See the
150
+ attributes/default.rb file for default values in the case statement at
151
+ the top of the file.
152
+
153
+ * `node['apache']['dir']` - Location for the Apache configuration
154
+ * `node['apache']['log_dir']` - Location for Apache logs
155
+ * `node['apache']['user']` - User Apache runs as
156
+ * `node['apache']['group']` - Group Apache runs as
157
+ * `node['apache']['binary']` - Apache httpd server daemon
158
+ * `node['apache']['icondir']` - Location for icons
159
+ * `node['apache']['cache_dir']` - Location for cached files used by Apache itself or recipes
160
+ * `node['apache']['pid_file']` - Location of the PID file for Apache httpd
161
+ * `node['apache']['lib_dir']` - Location for shared libraries
162
+ * `node['apache']['default_site_enabled']` - Default site enabled. Defaults to true on redhat-family platforms
163
+ * `node['apache']['ext_status']` - if true, enables ExtendedStatus for `mod_status`
164
+
165
+ General settings
166
+ ----------------
167
+
168
+ These are general settings used in recipes and templates. Default
169
+ values are noted.
170
+
171
+ * `node['apache']['listen_ports']` - Ports that httpd should listen on. Default is port 80.
172
+ * `node['apache']['contact']` - Value for ServerAdmin directive. Default "ops@example.com".
173
+ * `node['apache']['timeout']` - Value for the Timeout directive. Default is 300.
174
+ * `node['apache']['keepalive']` - Value for the KeepAlive directive. Default is On.
175
+ * `node['apache']['keepaliverequests']` - Value for MaxKeepAliveRequests. Default is 100.
176
+ * `node['apache']['keepalivetimeout']` - Value for the KeepAliveTimeout directive. Default is 5.
177
+ * `node['apache']['default_modules']` - Array of module names. Can take "mod_FOO" or "FOO" as names, where FOO is the apache module, e.g. "`mod_status`" or "`status`".
178
+
179
+ The modules listed in `default_modules` will be included as recipes in `recipe[apache::default]`.
180
+
181
+ Prefork attributes
182
+ ------------------
183
+
184
+ Prefork attributes are used for tuning the Apache HTTPD prefork MPM
185
+ configuration.
186
+
187
+ * `node['apache']['prefork']['startservers']` - initial number of server processes to start. Default is 16.
188
+ * `node['apache']['prefork']['minspareservers']` - minimum number of spare server processes. Default 16.
189
+ * `node['apache']['prefork']['maxspareservers']` - maximum number of spare server processes. Default 32.
190
+ * `node['apache']['prefork']['serverlimit']` - upper limit on configurable server processes. Default 400.
191
+ * `node['apache']['prefork']['maxclients']` - Maximum number of simultaneous connections.
192
+ * `node['apache']['prefork']['maxrequestsperchild']` - Maximum number of request a child process will handle. Default 10000.
193
+
194
+ Worker attributes
195
+ -----------------
196
+
197
+ Worker attributes are used for tuning the Apache HTTPD worker MPM
198
+ configuration.
199
+
200
+ * `node['apache']['worker']['startservers']` - Initial number of server processes to start. Default 4
201
+ * `node['apache']['worker']['serverlimit']` - upper limit on configurable server processes. Default 16.
202
+ * `node['apache']['worker']['maxclients']` - Maximum number of simultaneous connections. Default 1024.
203
+ * `node['apache']['worker']['minsparethreads']` - Minimum number of spare worker threads. Default 64
204
+ * `node['apache']['worker']['maxsparethreads']` - Maximum number of spare worker threads. Default 192.
205
+ * `node['apache']['worker']['maxrequestsperchild']` - Maximum number of requests a child process will handle.
206
+
207
+ mod\_auth\_openid attributes
208
+ ----------------------------
209
+
210
+ The following attributes are in the `attributes/mod_auth_openid.rb`
211
+ file. Like all Chef attributes files, they are loaded as well, but
212
+ they're logistically unrelated to the others, being specific to the
213
+ `mod_auth_openid` recipe.
214
+
215
+ * `node['apache']['mod_auth_openid']['checksum']` - sha256sum of the tarball containing the source.
216
+ * `node['apache']['mod_auth_openid']['ref']` - Any sha, tag, or branch found from https://github.com/bmuller/mod_auth_openid
217
+ * `node['apache']['mod_auth_openid']['cache_dir']` - the cache directory is where the sqlite3 database is stored. It is separate so it can be managed as a directory resource.
218
+ * `node['apache']['mod_auth_openid']['dblocation']` - filename of the sqlite3 database used for directive `AuthOpenIDDBLocation`, stored in the `cache_dir` by default.
219
+ * `node['apache']['mod_auth_openid']['configure_flags']` - optional array of configure flags passed to the `./configure` step in the compilation of the module.
220
+
221
+ mod\_ssl attributes
222
+ -------------------
223
+
224
+ * `node['apache']['mod_ssl']['cipher_suite']` - sets the
225
+ SSLCiphersuite value to the specified string. The default is
226
+ considered "sane" but you may need to change it for your local
227
+ security policy, e.g. if you have PCI-DSS requirements. Additional
228
+ commentary on the
229
+ [original pull request](https://github.com/opscode-cookbooks/apache2/pull/15#commitcomment-1605406).
230
+
231
+ Recipes
232
+ =======
233
+
234
+ Most of the recipes in the cookbook are for enabling Apache modules.
235
+ Where additional configuration or behavior is used, it is documented
236
+ below in more detail.
237
+
238
+ The following recipes merely enable the specified module: `mod_alias`,
239
+ `mod_basic`, `mod_digest`, `mod_authn_file`, `mod_authnz_ldap`,
240
+ `mod_authz_default`, `mod_authz_groupfile`, `mod_authz_host`,
241
+ `mod_authz_user`, `mod_autoindex`, `mod_cgi`, `mod_dav_fs`,
242
+ `mod_dav_svn`, `mod_deflate`, `mod_dir`, `mod_env`, `mod_expires`,
243
+ `mod_headers`, `mod_ldap`, `mod_log_config`, `mod_mime`,
244
+ `mod_negotiation`, `mod_proxy`, `mod_proxy_ajp`, `mod_proxy_balancer`,
245
+ `mod_proxy_connect`, `mod_proxy_http`, `mod_python`, `mod_rewrite`,
246
+ `mod_setenvif`, `mod_status`, `mod_wsgi`, `mod_xsendfile`.
247
+
248
+ On RHEL Family distributions, certain modules ship with a config file
249
+ with the package. The recipes here may delete those configuration
250
+ files to ensure they don't conflict with the settings from the
251
+ cookbook, which will use per-module configuration in
252
+ `/etc/httpd/mods-enabled`.
253
+
254
+ default
255
+ -------
256
+
257
+ The default recipe does a number of things to set up Apache HTTPd. It
258
+ also includes a number of modules based on the attribute
259
+ `node['apache']['default_modules']` as recipes.
260
+
261
+ logrotate
262
+ ---------
263
+
264
+ Logrotate adds a logrotate entry for your apache2 logs. This recipe
265
+ requires the `logrotate` cookbook; ensure that `recipe[logrotate]` is
266
+ in the node's expanded run list.
267
+
268
+ mod\_auth\_cas
269
+ --------------
270
+
271
+ This recipe installs the proper package and enables the `auth_cas`
272
+ module. It can install from source or package. Package is the default,
273
+ set the attribute `node['apache']['mod_auth_cas']['from_source']` to
274
+ true to enable source installation. Modify the version to install by
275
+ changing the attribute
276
+ `node['apache']['mod_auth_cas']['source_revision']`. It is a version
277
+ tag by default, but could be master, or another tag, or branch.
278
+
279
+ The module configuration is written out with the `CASCookiePath` set,
280
+ otherwise an error loading the module may cause Apache to not start.
281
+
282
+ **Note**: This recipe does not work on EL 6 platforms unless
283
+ epel-testing repository is enabled (outside the scope of this
284
+ cookbook), or the package version 1.0.8.1-3.el6 or higher is otherwise
285
+ available to the system due to this bug:
286
+
287
+ https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=708550
288
+
289
+ mod\_auth\_openid
290
+ -----------------
291
+
292
+ **Changed via COOK-915**
293
+
294
+ This recipe compiles the module from source. In addition to
295
+ `build-essential`, some other packages are included for installation
296
+ like the GNU C++ compiler and development headers.
297
+
298
+ To use the module in your own cookbooks to authenticate systems using
299
+ OpenIDs, specify an array of OpenIDs that are allowed to authenticate
300
+ with the attribute `node['apache']['allowed_openids']`. Use the
301
+ following in a vhost to protect with OpenID authentication:
302
+
303
+ AuthType OpenID require user <%= node['apache']['allowed_openids'].join(' ') %>
304
+ AuthOpenIDDBLocation <%= node['apache']['mod_auth_openid']['dblocation'] %>
305
+
306
+ Change the DBLocation with the attribute as required; this file is in
307
+ a different location than previous versions, see below. It should be a
308
+ sane default for most platforms, though, see
309
+ `attributes/mod_auth_openid.rb`.
310
+
311
+ ### Changes from COOK-915:
312
+
313
+ * `AuthType OpenID` instead of `AuthOpenIDEnabled On`.
314
+ * `require user` instead of `AuthOpenIDUserProgram`.
315
+ * A bug(?) in `mod_auth_openid` causes it to segfault when attempting
316
+ to update the database file if the containing directory is not
317
+ writable by the HTTPD process owner (e.g., www-data), even if the
318
+ file is writable. In order to not interfere with other settings from
319
+ the default recipe in this cookbook, the db file is moved.
320
+
321
+ mod\_fastcgi
322
+ ------------
323
+
324
+ Install the fastcgi package and enable the module.
325
+
326
+ Only work on Debian/Ubuntu
327
+
328
+ mod\_fcgid
329
+ ----------
330
+
331
+ Installs the fcgi package and enables the module. Requires EPEL on
332
+ RHEL family.
333
+
334
+ On RHEL family, this recipe will delete the fcgid.conf and on version
335
+ 6+, create the /var/run/httpd/mod_fcgid` directory, which prevents the
336
+ emergency error:
337
+
338
+ [emerg] (2)No such file or directory: mod_fcgid: Can't create shared memory for size XX bytes
339
+
340
+ mod\_php5
341
+ --------
342
+
343
+ Simply installs the appropriate package on Debian, Ubuntu and
344
+ ArchLinux.
345
+
346
+ On Red Hat family distributions including Fedora, the php.conf that
347
+ comes with the package is removed. On RHEL platforms less than v6, the
348
+ `php53` package is used.
349
+
350
+ mod\_ssl
351
+ --------
352
+
353
+ Besides installing and enabling `mod_ssl`, this recipe will append
354
+ port 443 to the `node['apache']['listen_ports']` attribute array and
355
+ update the ports.conf.
356
+
357
+ god\_monitor
358
+ ------------
359
+
360
+ Sets up a `god` monitor for Apache. External requirements are the
361
+ `god` and `runit` cookbooks from Opscode. When using this recipe,
362
+ include `recipe[god]` in the node's expanded run list to ensure the
363
+ client downloads it; `god` depends on runit so that will also be
364
+ downloaded.
365
+
366
+ **Note** This recipe is not tested under test-kitchen yet and is
367
+ pending fix in COOK-744.
368
+
369
+ Definitions
370
+ ===========
371
+
372
+ The cookbook provides a few definitions. At some point in the future
373
+ these definitions may be refactored into lightweight resources and
374
+ providers as suggested by
375
+ [foodcritic rule FC015](http://acrmp.github.com/foodcritic/#FC015).
376
+
377
+ apache\_conf
378
+ ------------
379
+
380
+ Sets up configuration file for an Apache module from a template. The
381
+ template should be in the same cookbook where the definition is used.
382
+ This is used by the `apache_module` definition and is not often used
383
+ directly.
384
+
385
+ This will use a template resource to write the module's configuration
386
+ file in the `mods-available` under the Apache configuration directory
387
+ (`node['apache']['dir']`). This is a platform-dependent location. See
388
+ __apache\_module__.
389
+
390
+ ### Parameters:
391
+
392
+ * `name` - Name of the template. When used from the `apache_module`,
393
+ it will use the same name as the module.
394
+
395
+ ### Examples:
396
+
397
+ Create `#{node['apache']['dir']}/mods-available/alias.conf`.
398
+
399
+ apache_conf "alias"
400
+
401
+ apache\_module
402
+ --------------
403
+
404
+ Enable or disable an Apache module in
405
+ `#{node['apache']['dir']}/mods-available` by calling `a2enmod` or
406
+ `a2dismod` to manage the symbolic link in
407
+ `#{node['apache']['dir']}/mods-enabled`. If the module has a
408
+ configuration file, a template should be created in the cookbook where
409
+ the definition is used. See __Examples__.
410
+
411
+ ### Parameters:
412
+
413
+ * `name` - Name of the module enabled or disabled with the `a2enmod` or `a2dismod` scripts.
414
+ * `enable` - Default true, which uses `a2enmod` to enable the module. If false, the module will be disabled with `a2dismod`.
415
+ * `conf` - Default false. Set to true if the module has a config file, which will use `apache_conf` for the file.
416
+ * `filename` - specify the full name of the file, e.g.
417
+
418
+ ### Examples:
419
+
420
+ Enable the ssl module, which also has a configuration template in `templates/default/ssl.conf.erb`.
421
+
422
+ apache_module "ssl" do
423
+ conf true
424
+ end
425
+
426
+ Enable the php5 module, which has a different filename than the module default:
427
+
428
+ apache_module "php5" do
429
+ filename "libphp5.so"
430
+ end
431
+
432
+ Disable a module:
433
+
434
+ apache_module "disabled_module" do
435
+ enable false
436
+ end
437
+
438
+ See the recipes directory for many more examples of `apache_module`.
439
+
440
+ apache\_site
441
+ ------------
442
+
443
+ Enable or disable a VirtualHost in
444
+ `#{node['apache']['dir']}/sites-available` by calling a2ensite or
445
+ a2dissite to manage the symbolic link in
446
+ `#{node['apache']['dir']}/sites-enabled`.
447
+
448
+ The template for the site must be managed as a separate resource. To
449
+ combine the template with enabling a site, see `web_app`.
450
+
451
+ ### Parameters:
452
+
453
+ * `name` - Name of the site.
454
+ * `enable` - Default true, which uses `a2ensite` to enable the site. If false, the site will be disabled with `a2dissite`.
455
+
456
+ web\_app
457
+ --------
458
+
459
+ Manage a template resource for a VirtualHost site, and enable it with
460
+ `apache_site`. This is commonly done for managing web applications
461
+ such as Ruby on Rails, PHP or Django, and the default behavior
462
+ reflects that. However it is flexible.
463
+
464
+ This definition includes some recipes to make sure the system is
465
+ configured to have Apache and some sane default modules:
466
+
467
+ * `apache2`
468
+ * `apache2::mod_rewrite`
469
+ * `apache2::mod_deflate`
470
+ * `apache2::mod_headers`
471
+
472
+ It will then configure the template (see __Parameters__ and
473
+ __Examples__ below), and enable or disable the site per the `enable`
474
+ parameter.
475
+
476
+ ### Parameters:
477
+
478
+ Current parameters used by the definition:
479
+
480
+ * `name` - The name of the site. The template will be written to
481
+ `#{node['apache']['dir']}/sites-available/#{params['name']}.conf`
482
+ * `cookbook` - Optional. Cookbook where the source template is. If
483
+ this is not defined, Chef will use the named template in the
484
+ cookbook where the definition is used.
485
+ * `template` - Default `web_app.conf.erb`, source template file.
486
+ * `enable` - Default true. Passed to the `apache_site` definition.
487
+
488
+ Additional parameters can be defined when the definition is called in
489
+ a recipe, see __Examples__.
490
+
491
+ ### Examples:
492
+
493
+ All parameters are passed into the template. You can use whatever you
494
+ like. The apache2 cookbook comes with a `web_app.conf.erb` template as
495
+ an example. The following parameters are used in the template:
496
+
497
+ * `server_name` - ServerName directive.
498
+ * `server_aliases` - ServerAlias directive. Must be an array of aliases.
499
+ * `docroot` - DocumentRoot directive.
500
+ * `application_name` - Used in RewriteLog directive. Will be set to the `name` parameter.
501
+ * `directory_index` - Allow overriding the default DirectoryIndex setting, optional
502
+ * `directory_options` - Override Options on the docroot, for example to add parameters like Includes or Indexes, optional.
503
+ * `allow_override` - Modify the AllowOverride directive on the docroot to support apps that need .htaccess to modify configuration or require authentication.
504
+
505
+ To use the default web_app, for example:
506
+
507
+ web_app "my_site" do
508
+ server_name node['hostname']
509
+ server_aliases [node['fqdn'], "my-site.example.com"]
510
+ docroot "/srv/www/my_site"
511
+ end
512
+
513
+ The parameters specified will be used as:
514
+
515
+ * `@params[:server_name]`
516
+ * `@params[:server_aliases]`
517
+ * `@params[:docroot]`
518
+
519
+ In the template. When you write your own, the `@` is significant.
520
+
521
+ For more information about Definitions and parameters, see the
522
+ [Chef Wiki](http://wiki.opscode.com/display/chef/Definitions)
523
+
524
+ Usage
525
+ =====
526
+
527
+ Using this cookbook is relatively straightforward. Add the desired
528
+ recipes to the run list of a node, or create a role. Depending on your
529
+ environment, you may have multiple roles that use different recipes
530
+ from this cookbook. Adjust any attributes as desired. For example, to
531
+ create a basic role for web servers that provide both HTTP and HTTPS:
532
+
533
+ % cat roles/webserver.rb
534
+ name "webserver"
535
+ description "Systems that serve HTTP and HTTPS"
536
+ run_list(
537
+ "recipe[apache2]",
538
+ "recipe[apache2::mod_ssl]"
539
+ )
540
+ default_attributes(
541
+ "apache2" => {
542
+ "listen_ports" => ["80", "443"]
543
+ }
544
+ )
545
+
546
+ For examples of using the definitions in your own recipes, see their
547
+ respective sections above.
548
+
549
+ License and Authors
550
+ ===================
551
+
552
+ * Author:: Adam Jacob <adam@opscode.com>
553
+ * Author:: Joshua Timberman <joshua@opscode.com>
554
+ * Author:: Bryan McLellan <bryanm@widemile.com>
555
+ * Author:: Dave Esposito <esposito@espolinux.corpnet.local>
556
+ * Author:: David Abdemoulaie <github@hobodave.com>
557
+ * Author:: Edmund Haselwanter <edmund@haselwanter.com>
558
+ * Author:: Eric Rochester <err8n@virginia.edu>
559
+ * Author:: Jim Browne <jbrowne@42lines.net>
560
+ * Author:: Matthew Kent <mkent@magoazul.com>
561
+ * Author:: Nathen Harvey <nharvey@customink.com>
562
+ * Author:: Ringo De Smet <ringo.de.smet@amplidata.com>
563
+ * Author:: Sean OMeara <someara@opscode.com>
564
+ * Author:: Seth Chisamore <schisamo@opscode.com>
565
+ * Author:: Gilles Devaux <gilles@peerpong.com>
566
+
567
+ * Copyright:: 2009-2012, Opscode, Inc
568
+ * Copyright:: 2011, Atriso
569
+ * Copyright:: 2011, CustomInk, LLC.
570
+
571
+ Licensed under the Apache License, Version 2.0 (the "License");
572
+ you may not use this file except in compliance with the License.
573
+ You may obtain a copy of the License at
574
+
575
+ http://www.apache.org/licenses/LICENSE-2.0
576
+
577
+ Unless required by applicable law or agreed to in writing, software
578
+ distributed under the License is distributed on an "AS IS" BASIS,
579
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
580
+ See the License for the specific language governing permissions and
581
+ limitations under the License.