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,142 @@
1
+ Description
2
+ ===========
3
+
4
+ Lightweight resource and provider to install OS X applications (.app) from dmg files.
5
+
6
+ Requirements
7
+ ============
8
+
9
+ ## Platform:
10
+
11
+ * Mac OS X
12
+
13
+ Resources and Providers
14
+ =======================
15
+
16
+ dmg\_package
17
+ ------------
18
+
19
+ This resource will install a DMG "Package". It will retrieve the DMG from a remote URL, mount it using OS X's `hdid`, copy the application (.app directory) to the specified destination (/Applications), and detach the image using `hdiutil`. The dmg file will be stored in the `Chef::Config[:file_cache_path]`. If you want to install an application that has already been downloaded (not using the `source` parameter), copy it to the appropriate location. You can find out what directory this is with the following command on the node to run chef:
20
+
21
+ knife exec -E 'p Chef::Config[:file_cache_path]' -c /etc/chef/client.rb
22
+
23
+ Optionally, the LWRP can install an "mpkg" or "pkg" package using installer(8).
24
+
25
+ # Actions:
26
+
27
+ * :install - Installs the application.
28
+
29
+ # Parameter attributes:
30
+
31
+ * `app` - This is the name of the application used by default for the /Volumes directory and the .app directory copied to /Applications.
32
+ * `source` - remote URL for the dmg to download if specified. Default is nil.
33
+ * `owner` - owner that should own the package installation.
34
+ * `destination` - directory to copy the .app into. Default is /Applications.
35
+ * `checksum` - sha256 checksum of the dmg to download. Default is nil.
36
+ * `type` - type of package, "app", "pkg" or "mpkg". Default is "app". When using "pkg" or "mpkg", the destination must be /Applications.
37
+ * `volumes_dir` - Directory under /Volumes where the dmg is mounted. Not all dmgs are mounted into a /Volumes location matching the name of the dmg. If not specified, this will use the name attribute.
38
+ * `package_id` - Package id registered with pkgutil when a pkg or mpkg is installed
39
+ * `dmg_name` - Specify the name of the dmg if it is not the same as `app`, or if the name has spaces.
40
+ * `dmg_passphrase` - Specify a passphrase to use to unencrypt the dmg while mounting.
41
+ * `accept_eula` - Specify whether to accept the EULA. Certain dmgs require acceptance of EULA before mounting. Can be true or false, defaults to false.
42
+
43
+ Usage Examples
44
+ ==============
45
+
46
+ Install `/Applications/Tunnelblick.app` from the primary download site.
47
+
48
+ dmg_package "Tunnelblick" do
49
+ source "http://tunnelblick.googlecode.com/files/Tunnelblick_3.1.2.dmg"
50
+ checksum "a3fae60b6833175f32df20c90cd3a3603a"
51
+ action :install
52
+ end
53
+
54
+ Install Google Chrome. Uses the `dmg_name` because the application name has spaces. Installs in `/Applications/Google Chrome.app`.
55
+
56
+ dmg_package "Google Chrome" do
57
+ dmg_name "googlechrome"
58
+ source "https://dl-ssl.google.com/chrome/mac/stable/GGRM/googlechrome.dmg"
59
+ checksum "7daa2dc5c46d9bfb14f1d7ff4b33884325e5e63e694810adc58f14795165c91a"
60
+ action :install
61
+ end
62
+
63
+ Install Dropbox. Uses `volumes_dir` because the mounted directory is different than the name of the application directory. Installs in `/Applications/Dropbox.app`.
64
+
65
+ dmg_package "Dropbox" do
66
+ volumes_dir "Dropbox Installer"
67
+ source "http://www.dropbox.com/download?plat=mac"
68
+ checksum "b4ea620ca22b0517b75753283ceb82326aca8bc3c86212fbf725de6446a96a13"
69
+ action :install
70
+ end
71
+
72
+ Install MacIrssi to `~/Applications` from the local file downloaded to the cache path into an Applications directory in the current user's home directory. Chef should run as a non-root user for this.
73
+
74
+ directory "#{ENV['HOME']}/Applications"
75
+
76
+ dmg_package "MacIrssi" do
77
+ destination "#{ENV['HOME']}/Applications"
78
+ action :install
79
+ end
80
+
81
+ Install Virtualbox to `/Applications` from the .mpkg:
82
+
83
+ dmg_package "Virtualbox" do
84
+ source "http://dlc.sun.com.edgesuite.net/virtualbox/4.0.8/VirtualBox-4.0.8-71778-OSX.dmg"
85
+ type "mpkg"
86
+ end
87
+
88
+ Install pgAdmin to `/Applications` and automatically accept the EULA:
89
+
90
+ dmg_package "pgAdmin3" do
91
+ source "http://wwwmaster.postgresql.org/redir/198/h/pgadmin3/release/v1.12.3/osx/pgadmin3-1.12.3.dmg"
92
+ checksum "9435f79d5b52d0febeddfad392adf82db9df159196f496c1ab139a6957242ce9"
93
+ accept_eula true
94
+ end
95
+
96
+ Install Pivotal Tracker to `/Applications` using a password-protected dmg:
97
+
98
+ dmg_package "Pivotal Tracker" do
99
+ volumes_dir "tracker"
100
+ source "http://cheffiles.pivotallabs.com/fluid_tracker.dmg"
101
+ dmg_passphrase "xyz"
102
+ end
103
+
104
+ Install Silverlight, with idempotence check based on pkgutil:
105
+
106
+ dmg_package "Silerlight" do
107
+ source "http://silverlight.dlservice.microsoft.com/download/D/C/2/DC2D5838-9138-4D25-AA92-52F61F7C51E6/runtime/Silverlight.dmg"
108
+ type "pkg"
109
+ checksum "6d4a0ad4552d9815531463eb3f467fb8cf4bffcc"
110
+ package_id "com.microsoft.installSilverlightPlugin"
111
+ end
112
+
113
+ To do
114
+ =====
115
+
116
+ A few things remain outstanding to make this cookbook "1.0" quality.
117
+
118
+ * support downloading a .dmg.zip and unzipping it
119
+ * specify a local .dmg already downloaded in another location (like ~/Downloads)
120
+
121
+ Some things that would be nice to have at some point.
122
+
123
+ * use hdiutil to mount/attach the disk image
124
+ * automatically detect the `volumes_dir` where the image is attached
125
+ * be able to automatically accept license agreements
126
+
127
+ License and Author
128
+ ==================
129
+
130
+ * Copyright 2011, Joshua Timberman <cookbooks@housepub.org>
131
+
132
+ Licensed under the Apache License, Version 2.0 (the "License");
133
+ you may not use this file except in compliance with the License.
134
+ You may obtain a copy of the License at
135
+
136
+ http://www.apache.org/licenses/LICENSE-2.0
137
+
138
+ Unless required by applicable law or agreed to in writing, software
139
+ distributed under the License is distributed on an "AS IS" BASIS,
140
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
141
+ See the License for the specific language governing permissions and
142
+ limitations under the License.
@@ -0,0 +1,20 @@
1
+ #
2
+ # Cookbook Name:: dmg
3
+ # Attributes:: default
4
+ #
5
+ # Copyright 2011, Joshua Timberman
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ #
19
+ default[:dmg][:base_dir] = "/Applications"
20
+ default[:dmg][:cache_dir] = Chef::Config[:file_cache_path]
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "dmg",
3
+ "description": "LWRP to install OS X applications from dmgs",
4
+ "long_description": "Description\n===========\n\nLightweight resource and provider to install OS X applications (.app) from dmg files.\n\nRequirements\n============\n\n## Platform:\n\n* Mac OS X\n\nResources and Providers\n=======================\n\ndmg\\_package\n------------\n\nThis resource will install a DMG \"Package\". It will retrieve the DMG from a remote URL, mount it using OS X's `hdid`, copy the application (.app directory) to the specified destination (/Applications), and detach the image using `hdiutil`. The dmg file will be stored in the `Chef::Config[:file_cache_path]`. If you want to install an application that has already been downloaded (not using the `source` parameter), copy it to the appropriate location. You can find out what directory this is with the following command on the node to run chef:\n\n knife exec -E 'p Chef::Config[:file_cache_path]' -c /etc/chef/client.rb\n\nOptionally, the LWRP can install an \"mpkg\" or \"pkg\" package using installer(8).\n\n# Actions:\n\n* :install - Installs the application.\n\n# Parameter attributes:\n\n* `app` - This is the name of the application used by default for the /Volumes directory and the .app directory copied to /Applications.\n* `source` - remote URL for the dmg to download if specified. Default is nil.\n* `owner` - owner that should own the package installation.\n* `destination` - directory to copy the .app into. Default is /Applications.\n* `checksum` - sha256 checksum of the dmg to download. Default is nil.\n* `type` - type of package, \"app\", \"pkg\" or \"mpkg\". Default is \"app\". When using \"pkg\" or \"mpkg\", the destination must be /Applications.\n* `volumes_dir` - Directory under /Volumes where the dmg is mounted. Not all dmgs are mounted into a /Volumes location matching the name of the dmg. If not specified, this will use the name attribute.\n* `package_id` - Package id registered with pkgutil when a pkg or mpkg is installed\n* `dmg_name` - Specify the name of the dmg if it is not the same as `app`, or if the name has spaces.\n* `dmg_passphrase` - Specify a passphrase to use to unencrypt the dmg while mounting.\n* `accept_eula` - Specify whether to accept the EULA. Certain dmgs require acceptance of EULA before mounting. Can be true or false, defaults to false.\n\nUsage Examples\n==============\n\nInstall `/Applications/Tunnelblick.app` from the primary download site.\n\n dmg_package \"Tunnelblick\" do\n source \"http://tunnelblick.googlecode.com/files/Tunnelblick_3.1.2.dmg\"\n checksum \"a3fae60b6833175f32df20c90cd3a3603a\"\n action :install\n end\n\nInstall Google Chrome. Uses the `dmg_name` because the application name has spaces. Installs in `/Applications/Google Chrome.app`.\n\n dmg_package \"Google Chrome\" do\n dmg_name \"googlechrome\"\n source \"https://dl-ssl.google.com/chrome/mac/stable/GGRM/googlechrome.dmg\"\n checksum \"7daa2dc5c46d9bfb14f1d7ff4b33884325e5e63e694810adc58f14795165c91a\"\n action :install\n end\n\nInstall Dropbox. Uses `volumes_dir` because the mounted directory is different than the name of the application directory. Installs in `/Applications/Dropbox.app`.\n\n dmg_package \"Dropbox\" do\n volumes_dir \"Dropbox Installer\"\n source \"http://www.dropbox.com/download?plat=mac\"\n checksum \"b4ea620ca22b0517b75753283ceb82326aca8bc3c86212fbf725de6446a96a13\"\n action :install\n end\n\nInstall MacIrssi to `~/Applications` from the local file downloaded to the cache path into an Applications directory in the current user's home directory. Chef should run as a non-root user for this.\n\n directory \"#{ENV['HOME']}/Applications\"\n\n dmg_package \"MacIrssi\" do\n destination \"#{ENV['HOME']}/Applications\"\n action :install\n end\n\nInstall Virtualbox to `/Applications` from the .mpkg:\n\n dmg_package \"Virtualbox\" do\n source \"http://dlc.sun.com.edgesuite.net/virtualbox/4.0.8/VirtualBox-4.0.8-71778-OSX.dmg\"\n type \"mpkg\"\n end\n\nInstall pgAdmin to `/Applications` and automatically accept the EULA:\n\n dmg_package \"pgAdmin3\" do\n source \"http://wwwmaster.postgresql.org/redir/198/h/pgadmin3/release/v1.12.3/osx/pgadmin3-1.12.3.dmg\"\n checksum \"9435f79d5b52d0febeddfad392adf82db9df159196f496c1ab139a6957242ce9\"\n accept_eula true\n end\n\nInstall Pivotal Tracker to `/Applications` using a password-protected dmg:\n\n dmg_package \"Pivotal Tracker\" do\n volumes_dir \"tracker\"\n source \"http://cheffiles.pivotallabs.com/fluid_tracker.dmg\"\n dmg_passphrase \"xyz\"\n end\n\nInstall Silverlight, with idempotence check based on pkgutil:\n\n dmg_package \"Silerlight\" do\n source \"http://silverlight.dlservice.microsoft.com/download/D/C/2/DC2D5838-9138-4D25-AA92-52F61F7C51E6/runtime/Silverlight.dmg\"\n type \"pkg\"\n checksum \"6d4a0ad4552d9815531463eb3f467fb8cf4bffcc\"\n package_id \"com.microsoft.installSilverlightPlugin\"\n end\n\nTo do\n=====\n\nA few things remain outstanding to make this cookbook \"1.0\" quality.\n\n* support downloading a .dmg.zip and unzipping it\n* specify a local .dmg already downloaded in another location (like ~/Downloads)\n\nSome things that would be nice to have at some point.\n\n* use hdiutil to mount/attach the disk image\n* automatically detect the `volumes_dir` where the image is attached\n* be able to automatically accept license agreements\n\nLicense and Author\n==================\n\n* Copyright 2011, Joshua Timberman <cookbooks@housepub.org>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
5
+ "maintainer": "Joshua Timberman",
6
+ "maintainer_email": "cookbooks@housepub.org",
7
+ "license": "Apache 2.0",
8
+ "platforms": {
9
+ "mac_os_x": ">= 0.0.0"
10
+ },
11
+ "dependencies": {
12
+ },
13
+ "recommendations": {
14
+ },
15
+ "suggestions": {
16
+ },
17
+ "conflicting": {
18
+ },
19
+ "providing": {
20
+ },
21
+ "replacing": {
22
+ },
23
+ "attributes": {
24
+ },
25
+ "groupings": {
26
+ },
27
+ "recipes": {
28
+ },
29
+ "version": "1.1.0"
30
+ }
@@ -0,0 +1,8 @@
1
+ name "dmg"
2
+ maintainer "Joshua Timberman"
3
+ maintainer_email "cookbooks@housepub.org"
4
+ license "Apache 2.0"
5
+ description "LWRP to install OS X applications from dmgs"
6
+ long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7
+ version "1.1.0"
8
+ supports "mac_os_x"
@@ -0,0 +1,82 @@
1
+ #
2
+ # Cookbook Name:: dmg
3
+ # Provider:: package
4
+ #
5
+ # Copyright 2011, Joshua Timberman
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ #
19
+
20
+ def load_current_resource
21
+ @dmgpkg = Chef::Resource::DmgPackage.new(new_resource.name)
22
+ @dmgpkg.app(new_resource.app)
23
+ Chef::Log.debug("Checking for application #{new_resource.app}")
24
+ @dmgpkg.installed(installed?)
25
+ end
26
+
27
+ action :install do
28
+ unless @dmgpkg.installed
29
+
30
+ volumes_dir = new_resource.volumes_dir ? new_resource.volumes_dir : new_resource.app
31
+ dmg_name = new_resource.dmg_name ? new_resource.dmg_name : new_resource.app
32
+ dmg_file = "#{Chef::Config[:file_cache_path]}/#{dmg_name}.dmg"
33
+
34
+ remote_file "#{dmg_file} - #{@dmgpkg.name}" do
35
+ path dmg_file
36
+ source new_resource.source
37
+ checksum new_resource.checksum if new_resource.checksum
38
+ only_if { new_resource.source }
39
+ end
40
+
41
+ passphrase_cmd = new_resource.dmg_passphrase ? "-passphrase #{new_resource.dmg_passphrase}" : ""
42
+ ruby_block "attach #{dmg_file}" do
43
+ block do
44
+ software_license_agreement = system("hdiutil imageinfo #{passphrase_cmd} '#{dmg_file}' | grep -q 'Software License Agreement: true'")
45
+ raise "Requires EULA Acceptance; add 'accept_eula true' to package resource" if software_license_agreement && !new_resource.accept_eula
46
+ accept_eula_cmd = new_resource.accept_eula ? "echo Y |" : ""
47
+ system "#{accept_eula_cmd} hdiutil attach #{passphrase_cmd} '#{dmg_file}'"
48
+ end
49
+ not_if "hdiutil info #{passphrase_cmd} | grep -q 'image-path.*#{dmg_file}'"
50
+ end
51
+
52
+ case new_resource.type
53
+ when "app"
54
+ execute "cp -R '/Volumes/#{volumes_dir}/#{new_resource.app}.app' '#{new_resource.destination}'" do
55
+ user new_resource.owner if new_resource.owner
56
+ end
57
+
58
+ file "#{new_resource.destination}/#{new_resource.app}.app/Contents/MacOS/#{new_resource.app}" do
59
+ mode 0755
60
+ ignore_failure true
61
+ end
62
+ when "mpkg", "pkg"
63
+ execute "sudo installer -pkg '/Volumes/#{volumes_dir}/#{new_resource.app}.#{new_resource.type}' -target /"
64
+ end
65
+
66
+ execute "hdiutil detach '/Volumes/#{volumes_dir}'"
67
+ end
68
+ end
69
+
70
+ private
71
+
72
+ def installed?
73
+ if ( ::File.directory?("#{new_resource.destination}/#{new_resource.app}.app") )
74
+ Chef::Log.info "Already installed; to upgrade, remove \"#{new_resource.destination}/#{new_resource.app}.app\""
75
+ true
76
+ elsif ( system("pkgutil --pkgs=#{new_resource.package_id}") )
77
+ Chef::Log.info "Already installed; to upgrade, try \"sudo pkgutil --forget #{new_resource.package_id}\""
78
+ true
79
+ else
80
+ false
81
+ end
82
+ end
@@ -0,0 +1,18 @@
1
+ #
2
+ # Cookbook Name:: dmg
3
+ # Recipe:: default
4
+ #
5
+ # Copyright 2011, Joshua Timberman
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ #
@@ -0,0 +1,37 @@
1
+ #
2
+ # Cookbook Name:: dmg
3
+ # Resource:: package
4
+ #
5
+ # Copyright 2011, Joshua Timberman
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ #
19
+ actions :install
20
+
21
+ attribute :app, :kind_of => String, :name_attribute => true
22
+ attribute :source, :kind_of => String, :default => nil
23
+ attribute :owner, :kind_of => String, :default => nil
24
+ attribute :destination, :kind_of => String, :default => "/Applications"
25
+ attribute :checksum, :kind_of => String, :default => nil
26
+ attribute :volumes_dir, :kind_of => String, :default => nil
27
+ attribute :dmg_name, :kind_of => String, :default => nil
28
+ attribute :type, :kind_of => String, :default => "app"
29
+ attribute :installed, :kind_of => [TrueClass, FalseClass], :default => false
30
+ attribute :package_id, :kind_of => String, :default => nil
31
+ attribute :dmg_passphrase, :kind_of => String, :default => nil
32
+ attribute :accept_eula, :kind_of => [TrueClass, FalseClass], :default => false
33
+
34
+ def initialize(name, run_context=nil)
35
+ super
36
+ @action = :install
37
+ end
@@ -0,0 +1,63 @@
1
+ ## v2.3.0:
2
+
3
+ * [COOK-2385] - update git::server for `runit_service` resource support
4
+
5
+ ## v2.2.0:
6
+
7
+ * [COOK-2303] - git::server support for RHEL platform_family
8
+
9
+ ## v2.1.4:
10
+
11
+ * [COOK-2110] - initial test-kitchen support (only available in GitHub
12
+ repository).
13
+ * [COOK-2253] - pin runit dependency
14
+
15
+ ## v2.1.2:
16
+
17
+ * [COOK-2043] - install git on ubuntu 12.04 not git-core
18
+
19
+ ## v2.1.0:
20
+
21
+ The repository didn't have pushed commits, and so the following
22
+ changes from earlier-than-latest versions wouldn't be available on the
23
+ community site. We're releasing 2.1.0 to correct this.
24
+
25
+ * [COOK-1943] - Update to git 1.8.0
26
+ * [COOK-2020] - Add setup option attributes to Git Windows package
27
+ install
28
+
29
+ ## v2.0.0:
30
+
31
+ This version uses platform_family attribute, making the cookbook incompatible
32
+ with older versions of Chef/Ohai, hence the major version bump.
33
+
34
+ * [COOK-1668] - git cookbook fails to run due to bad platform_family
35
+ call
36
+ * [COOK-1759] - git::source needs additional package for rhel
37
+ platform_family
38
+
39
+ ## v1.1.2:
40
+
41
+ * [COOK-2020] - Add setup option attributes to Git Windows package
42
+ install
43
+
44
+ ## v1.1.0:
45
+
46
+ * [COOK-1943] - Update to git 1.8.0
47
+
48
+ ## v1.0.2:
49
+
50
+ * [COOK-1537] - add recipe for source installation
51
+
52
+ ## v1.0.0:
53
+
54
+ * [COOK-1152] - Add support for Mac OS X
55
+ * [COOK-1112] - Add support for Windows
56
+
57
+ ## v0.10.0:
58
+
59
+ * [COOK-853] - Git client installation on CentOS
60
+
61
+ ## v0.9.0:
62
+
63
+ * Current public release.
@@ -0,0 +1,29 @@
1
+ If you would like to contribute, please open a ticket in JIRA:
2
+
3
+ * http://tickets.opscode.com
4
+
5
+ Create the ticket in the COOK project and use the cookbook name as the
6
+ component.
7
+
8
+ For all code contributions, we ask that contributors sign a
9
+ contributor license agreement (CLA). Instructions may be found here:
10
+
11
+ * http://wiki.opscode.com/display/chef/How+to+Contribute
12
+
13
+ When contributing changes to individual cookbooks, please do not
14
+ modify the version number in the metadata.rb. Also please do not
15
+ update the CHANGELOG.md for a new version. Not all changes to a
16
+ cookbook may be merged and released in the same versions. Opscode will
17
+ handle the version updates during the release process. You are welcome
18
+ to correct typos or otherwise make updates to documentation in the
19
+ README.
20
+
21
+ If a contribution adds new platforms or platform versions, indicate
22
+ such in the body of the commit message(s), and update the relevant
23
+ COOK ticket. When writing commit messages, it is helpful for others if
24
+ you indicate the COOK ticket. For example:
25
+
26
+ git commit -m '[COOK-1041] Updated pool resource to correctly delete.'
27
+
28
+ In the ticket itself, it is also helpful if you include log output of
29
+ a successful Chef run, but this is not absolutely required.
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gem 'test-kitchen', '< 1.0'
@@ -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.