chef-cli 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (372) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +32 -0
  3. data/LICENSE +201 -0
  4. data/Rakefile +70 -0
  5. data/bin/chef +25 -0
  6. data/chef-cli.gemspec +53 -0
  7. data/lib/chef-cli.rb +19 -0
  8. data/lib/chef-cli/authenticated_http.rb +22 -0
  9. data/lib/chef-cli/builtin_commands.rb +62 -0
  10. data/lib/chef-cli/chef_runner.rb +114 -0
  11. data/lib/chef-cli/chef_server_api_multi.rb +73 -0
  12. data/lib/chef-cli/cli.rb +206 -0
  13. data/lib/chef-cli/command/base.rb +89 -0
  14. data/lib/chef-cli/command/clean_policy_cookbooks.rb +115 -0
  15. data/lib/chef-cli/command/clean_policy_revisions.rb +112 -0
  16. data/lib/chef-cli/command/delete_policy.rb +121 -0
  17. data/lib/chef-cli/command/delete_policy_group.rb +121 -0
  18. data/lib/chef-cli/command/describe_cookbook.rb +98 -0
  19. data/lib/chef-cli/command/diff.rb +316 -0
  20. data/lib/chef-cli/command/env.rb +99 -0
  21. data/lib/chef-cli/command/exec.rb +45 -0
  22. data/lib/chef-cli/command/export.rb +156 -0
  23. data/lib/chef-cli/command/gem.rb +48 -0
  24. data/lib/chef-cli/command/generate.rb +123 -0
  25. data/lib/chef-cli/command/generator_commands.rb +83 -0
  26. data/lib/chef-cli/command/generator_commands/attribute.rb +37 -0
  27. data/lib/chef-cli/command/generator_commands/base.rb +157 -0
  28. data/lib/chef-cli/command/generator_commands/build_cookbook.rb +126 -0
  29. data/lib/chef-cli/command/generator_commands/chef_exts/generator_desc_resource.rb +40 -0
  30. data/lib/chef-cli/command/generator_commands/chef_exts/quieter_doc_formatter.rb +38 -0
  31. data/lib/chef-cli/command/generator_commands/chef_exts/recipe_dsl_ext.rb +39 -0
  32. data/lib/chef-cli/command/generator_commands/cookbook.rb +251 -0
  33. data/lib/chef-cli/command/generator_commands/cookbook_code_file.rb +100 -0
  34. data/lib/chef-cli/command/generator_commands/cookbook_file.rb +46 -0
  35. data/lib/chef-cli/command/generator_commands/generator_generator.rb +175 -0
  36. data/lib/chef-cli/command/generator_commands/helpers.rb +37 -0
  37. data/lib/chef-cli/command/generator_commands/policyfile.rb +125 -0
  38. data/lib/chef-cli/command/generator_commands/recipe.rb +37 -0
  39. data/lib/chef-cli/command/generator_commands/repo.rb +140 -0
  40. data/lib/chef-cli/command/generator_commands/resource.rb +37 -0
  41. data/lib/chef-cli/command/generator_commands/template.rb +47 -0
  42. data/lib/chef-cli/command/install.rb +121 -0
  43. data/lib/chef-cli/command/provision.rb +38 -0
  44. data/lib/chef-cli/command/push.rb +118 -0
  45. data/lib/chef-cli/command/push_archive.rb +126 -0
  46. data/lib/chef-cli/command/shell_init.rb +185 -0
  47. data/lib/chef-cli/command/show_policy.rb +164 -0
  48. data/lib/chef-cli/command/undelete.rb +155 -0
  49. data/lib/chef-cli/command/update.rb +140 -0
  50. data/lib/chef-cli/command/verify.rb +548 -0
  51. data/lib/chef-cli/commands_map.rb +113 -0
  52. data/lib/chef-cli/completions/bash.sh.erb +5 -0
  53. data/lib/chef-cli/completions/chef.fish.erb +10 -0
  54. data/lib/chef-cli/completions/zsh.zsh.erb +21 -0
  55. data/lib/chef-cli/component_test.rb +226 -0
  56. data/lib/chef-cli/configurable.rb +88 -0
  57. data/lib/chef-cli/cookbook_metadata.rb +45 -0
  58. data/lib/chef-cli/cookbook_omnifetch.rb +32 -0
  59. data/lib/chef-cli/cookbook_profiler/git.rb +152 -0
  60. data/lib/chef-cli/cookbook_profiler/identifiers.rb +72 -0
  61. data/lib/chef-cli/cookbook_profiler/null_scm.rb +31 -0
  62. data/lib/chef-cli/dist.rb +31 -0
  63. data/lib/chef-cli/exceptions.rb +153 -0
  64. data/lib/chef-cli/generator.rb +165 -0
  65. data/lib/chef-cli/helpers.rb +170 -0
  66. data/lib/chef-cli/pager.rb +104 -0
  67. data/lib/chef-cli/policyfile/artifactory_cookbook_source.rb +102 -0
  68. data/lib/chef-cli/policyfile/attribute_merge_checker.rb +110 -0
  69. data/lib/chef-cli/policyfile/chef_repo_cookbook_source.rb +138 -0
  70. data/lib/chef-cli/policyfile/chef_server_cookbook_source.rb +99 -0
  71. data/lib/chef-cli/policyfile/chef_server_lock_fetcher.rb +167 -0
  72. data/lib/chef-cli/policyfile/community_cookbook_source.rb +95 -0
  73. data/lib/chef-cli/policyfile/comparison_base.rb +123 -0
  74. data/lib/chef-cli/policyfile/cookbook_location_specification.rb +154 -0
  75. data/lib/chef-cli/policyfile/cookbook_locks.rb +466 -0
  76. data/lib/chef-cli/policyfile/cookbook_sources.rb +23 -0
  77. data/lib/chef-cli/policyfile/delivery_supermarket_source.rb +89 -0
  78. data/lib/chef-cli/policyfile/differ.rb +263 -0
  79. data/lib/chef-cli/policyfile/dsl.rb +288 -0
  80. data/lib/chef-cli/policyfile/git_lock_fetcher.rb +265 -0
  81. data/lib/chef-cli/policyfile/included_policies_cookbook_source.rb +156 -0
  82. data/lib/chef-cli/policyfile/lister.rb +229 -0
  83. data/lib/chef-cli/policyfile/local_lock_fetcher.rb +132 -0
  84. data/lib/chef-cli/policyfile/lock_applier.rb +80 -0
  85. data/lib/chef-cli/policyfile/lock_fetcher_mixin.rb +37 -0
  86. data/lib/chef-cli/policyfile/null_cookbook_source.rb +49 -0
  87. data/lib/chef-cli/policyfile/policyfile_location_specification.rb +128 -0
  88. data/lib/chef-cli/policyfile/read_cookbook_for_compat_mode_upload.rb +124 -0
  89. data/lib/chef-cli/policyfile/remote_lock_fetcher.rb +108 -0
  90. data/lib/chef-cli/policyfile/reports/install.rb +69 -0
  91. data/lib/chef-cli/policyfile/reports/table_printer.rb +57 -0
  92. data/lib/chef-cli/policyfile/reports/upload.rb +70 -0
  93. data/lib/chef-cli/policyfile/solution_dependencies.rb +311 -0
  94. data/lib/chef-cli/policyfile/source_uri.rb +57 -0
  95. data/lib/chef-cli/policyfile/storage_config.rb +112 -0
  96. data/lib/chef-cli/policyfile/undo_record.rb +139 -0
  97. data/lib/chef-cli/policyfile/undo_stack.rb +128 -0
  98. data/lib/chef-cli/policyfile/uploader.rb +222 -0
  99. data/lib/chef-cli/policyfile_compiler.rb +528 -0
  100. data/lib/chef-cli/policyfile_lock.rb +581 -0
  101. data/lib/chef-cli/policyfile_services/clean_policies.rb +95 -0
  102. data/lib/chef-cli/policyfile_services/clean_policy_cookbooks.rb +123 -0
  103. data/lib/chef-cli/policyfile_services/export_repo.rb +419 -0
  104. data/lib/chef-cli/policyfile_services/install.rb +167 -0
  105. data/lib/chef-cli/policyfile_services/push.rb +112 -0
  106. data/lib/chef-cli/policyfile_services/push_archive.rb +164 -0
  107. data/lib/chef-cli/policyfile_services/rm_policy.rb +141 -0
  108. data/lib/chef-cli/policyfile_services/rm_policy_group.rb +85 -0
  109. data/lib/chef-cli/policyfile_services/show_policy.rb +234 -0
  110. data/lib/chef-cli/policyfile_services/undelete.rb +108 -0
  111. data/lib/chef-cli/policyfile_services/update_attributes.rb +110 -0
  112. data/lib/chef-cli/service_exception_inspectors.rb +24 -0
  113. data/lib/chef-cli/service_exception_inspectors/base.rb +39 -0
  114. data/lib/chef-cli/service_exception_inspectors/http.rb +119 -0
  115. data/lib/chef-cli/service_exceptions.rb +142 -0
  116. data/lib/chef-cli/shell_out.rb +36 -0
  117. data/lib/chef-cli/skeletons/code_generator/files/default/Berksfile +3 -0
  118. data/lib/chef-cli/skeletons/code_generator/files/default/build_cookbook/README.md +146 -0
  119. data/lib/chef-cli/skeletons/code_generator/files/default/build_cookbook/kitchen.yml +21 -0
  120. data/lib/chef-cli/skeletons/code_generator/files/default/build_cookbook/test-fixture-recipe.rb +8 -0
  121. data/lib/chef-cli/skeletons/code_generator/files/default/chefignore +110 -0
  122. data/lib/chef-cli/skeletons/code_generator/files/default/cookbook_readmes/README-policy.md +9 -0
  123. data/lib/chef-cli/skeletons/code_generator/files/default/cookbook_readmes/README.md +66 -0
  124. data/lib/chef-cli/skeletons/code_generator/files/default/delivery-config.json +17 -0
  125. data/lib/chef-cli/skeletons/code_generator/files/default/delivery-project.toml +34 -0
  126. data/lib/chef-cli/skeletons/code_generator/files/default/gitignore +22 -0
  127. data/lib/chef-cli/skeletons/code_generator/files/default/repo/README.md +20 -0
  128. data/lib/chef-cli/skeletons/code_generator/files/default/repo/cookbooks/example/README.md +27 -0
  129. data/lib/chef-cli/skeletons/code_generator/files/default/repo/cookbooks/example/attributes/default.rb +7 -0
  130. data/lib/chef-cli/skeletons/code_generator/files/default/repo/cookbooks/example/metadata.rb +6 -0
  131. data/lib/chef-cli/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +8 -0
  132. data/lib/chef-cli/skeletons/code_generator/files/default/repo/data_bags/README.md +56 -0
  133. data/lib/chef-cli/skeletons/code_generator/files/default/repo/data_bags/example/example_item.json +4 -0
  134. data/lib/chef-cli/skeletons/code_generator/files/default/repo/dot-chef-repo.txt +6 -0
  135. data/lib/chef-cli/skeletons/code_generator/files/default/repo/environments/README.md +9 -0
  136. data/lib/chef-cli/skeletons/code_generator/files/default/repo/environments/example.json +13 -0
  137. data/lib/chef-cli/skeletons/code_generator/files/default/repo/policyfiles/README.md +24 -0
  138. data/lib/chef-cli/skeletons/code_generator/files/default/repo/roles/README.md +9 -0
  139. data/lib/chef-cli/skeletons/code_generator/files/default/repo/roles/example.json +13 -0
  140. data/lib/chef-cli/skeletons/code_generator/files/default/spec_helper.rb +2 -0
  141. data/lib/chef-cli/skeletons/code_generator/files/default/spec_helper_policyfile.rb +2 -0
  142. data/lib/chef-cli/skeletons/code_generator/metadata.rb +8 -0
  143. data/lib/chef-cli/skeletons/code_generator/recipes/attribute.rb +11 -0
  144. data/lib/chef-cli/skeletons/code_generator/recipes/build_cookbook.rb +175 -0
  145. data/lib/chef-cli/skeletons/code_generator/recipes/cookbook.rb +167 -0
  146. data/lib/chef-cli/skeletons/code_generator/recipes/cookbook_file.rb +23 -0
  147. data/lib/chef-cli/skeletons/code_generator/recipes/helpers.rb +19 -0
  148. data/lib/chef-cli/skeletons/code_generator/recipes/policyfile.rb +7 -0
  149. data/lib/chef-cli/skeletons/code_generator/recipes/recipe.rb +50 -0
  150. data/lib/chef-cli/skeletons/code_generator/recipes/repo.rb +71 -0
  151. data/lib/chef-cli/skeletons/code_generator/recipes/resource.rb +12 -0
  152. data/lib/chef-cli/skeletons/code_generator/recipes/template.rb +31 -0
  153. data/lib/chef-cli/skeletons/code_generator/templates/default/CHANGELOG.md.erb +11 -0
  154. data/lib/chef-cli/skeletons/code_generator/templates/default/LICENSE.all_rights.erb +3 -0
  155. data/lib/chef-cli/skeletons/code_generator/templates/default/LICENSE.apachev2.erb +201 -0
  156. data/lib/chef-cli/skeletons/code_generator/templates/default/LICENSE.gplv2.erb +339 -0
  157. data/lib/chef-cli/skeletons/code_generator/templates/default/LICENSE.gplv3.erb +674 -0
  158. data/lib/chef-cli/skeletons/code_generator/templates/default/LICENSE.mit.erb +21 -0
  159. data/lib/chef-cli/skeletons/code_generator/templates/default/Policyfile.rb.erb +25 -0
  160. data/lib/chef-cli/skeletons/code_generator/templates/default/README.md.erb +4 -0
  161. data/lib/chef-cli/skeletons/code_generator/templates/default/attribute.rb.erb +0 -0
  162. data/lib/chef-cli/skeletons/code_generator/templates/default/build_cookbook/Berksfile.erb +7 -0
  163. data/lib/chef-cli/skeletons/code_generator/templates/default/build_cookbook/metadata.rb.erb +10 -0
  164. data/lib/chef-cli/skeletons/code_generator/templates/default/build_cookbook/recipe.rb.erb +9 -0
  165. data/lib/chef-cli/skeletons/code_generator/templates/default/cookbook_file.erb +0 -0
  166. data/lib/chef-cli/skeletons/code_generator/templates/default/helpers.rb.erb +39 -0
  167. data/lib/chef-cli/skeletons/code_generator/templates/default/inspec_default_test.rb.erb +16 -0
  168. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen.yml.erb +38 -0
  169. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen_dokken.yml.erb +36 -0
  170. data/lib/chef-cli/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +32 -0
  171. data/lib/chef-cli/skeletons/code_generator/templates/default/metadata.rb.erb +20 -0
  172. data/lib/chef-cli/skeletons/code_generator/templates/default/recipe.rb.erb +5 -0
  173. data/lib/chef-cli/skeletons/code_generator/templates/default/recipe_spec.rb.erb +29 -0
  174. data/lib/chef-cli/skeletons/code_generator/templates/default/repo/gitignore.erb +128 -0
  175. data/lib/chef-cli/skeletons/code_generator/templates/default/resource.rb.erb +1 -0
  176. data/lib/chef-cli/skeletons/code_generator/templates/default/template.erb +0 -0
  177. data/lib/chef-cli/ui.rb +57 -0
  178. data/lib/chef-cli/version.rb +20 -0
  179. data/lib/kitchen/provisioner/policyfile_zero.rb +195 -0
  180. data/spec/shared/a_file_generator.rb +125 -0
  181. data/spec/shared/a_generated_file.rb +12 -0
  182. data/spec/shared/command_with_ui_object.rb +11 -0
  183. data/spec/shared/custom_generator_cookbook.rb +136 -0
  184. data/spec/shared/fixture_cookbook_checksums.rb +46 -0
  185. data/spec/shared/setup_git_committer_config.rb +54 -0
  186. data/spec/shared/setup_git_cookbooks.rb +53 -0
  187. data/spec/spec_helper.rb +51 -0
  188. data/spec/test_helpers.rb +84 -0
  189. data/spec/unit/chef_runner_spec.rb +139 -0
  190. data/spec/unit/chef_server_api_multi_spec.rb +120 -0
  191. data/spec/unit/cli_spec.rb +375 -0
  192. data/spec/unit/command/base_spec.rb +195 -0
  193. data/spec/unit/command/clean_policy_cookbooks_spec.rb +180 -0
  194. data/spec/unit/command/clean_policy_revisions_spec.rb +180 -0
  195. data/spec/unit/command/delete_policy_group_spec.rb +206 -0
  196. data/spec/unit/command/delete_policy_spec.rb +206 -0
  197. data/spec/unit/command/diff_spec.rb +311 -0
  198. data/spec/unit/command/env_spec.rb +86 -0
  199. data/spec/unit/command/exec_spec.rb +178 -0
  200. data/spec/unit/command/export_spec.rb +199 -0
  201. data/spec/unit/command/generate_spec.rb +142 -0
  202. data/spec/unit/command/generator_commands/attribute_spec.rb +31 -0
  203. data/spec/unit/command/generator_commands/base_spec.rb +180 -0
  204. data/spec/unit/command/generator_commands/build_cookbook_spec.rb +377 -0
  205. data/spec/unit/command/generator_commands/chef_exts/generator_desc_resource_spec.rb +77 -0
  206. data/spec/unit/command/generator_commands/chef_exts/recipe_dsl_ext_spec.rb +111 -0
  207. data/spec/unit/command/generator_commands/cookbook_file_spec.rb +31 -0
  208. data/spec/unit/command/generator_commands/cookbook_spec.rb +769 -0
  209. data/spec/unit/command/generator_commands/generator_generator_spec.rb +227 -0
  210. data/spec/unit/command/generator_commands/helpers_spec.rb +31 -0
  211. data/spec/unit/command/generator_commands/policyfile_spec.rb +223 -0
  212. data/spec/unit/command/generator_commands/recipe_spec.rb +37 -0
  213. data/spec/unit/command/generator_commands/repo_spec.rb +374 -0
  214. data/spec/unit/command/generator_commands/resource_spec.rb +31 -0
  215. data/spec/unit/command/generator_commands/template_spec.rb +31 -0
  216. data/spec/unit/command/install_spec.rb +179 -0
  217. data/spec/unit/command/push_archive_spec.rb +153 -0
  218. data/spec/unit/command/push_spec.rb +198 -0
  219. data/spec/unit/command/shell_init_spec.rb +339 -0
  220. data/spec/unit/command/show_policy_spec.rb +234 -0
  221. data/spec/unit/command/undelete_spec.rb +244 -0
  222. data/spec/unit/command/update_spec.rb +283 -0
  223. data/spec/unit/command/verify_spec.rb +341 -0
  224. data/spec/unit/commands_map_spec.rb +57 -0
  225. data/spec/unit/component_test_spec.rb +128 -0
  226. data/spec/unit/configurable_spec.rb +68 -0
  227. data/spec/unit/cookbook_metadata_spec.rb +96 -0
  228. data/spec/unit/cookbook_profiler/git_spec.rb +176 -0
  229. data/spec/unit/cookbook_profiler/identifiers_spec.rb +81 -0
  230. data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_one.rb +9 -0
  231. data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_two.rb +9 -0
  232. data/spec/unit/fixtures/command/cli_test_command.rb +26 -0
  233. data/spec/unit/fixtures/command/explicit_path_example.rb +7 -0
  234. data/spec/unit/fixtures/configurable/test_config_loader.rb +5 -0
  235. data/spec/unit/fixtures/configurable/test_configurable.rb +10 -0
  236. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -0
  237. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/Berksfile +3 -0
  238. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -0
  239. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/chefignore +96 -0
  240. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -0
  241. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -0
  242. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/.kitchen.yml +16 -0
  243. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/Berksfile +3 -0
  244. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/README.md +4 -0
  245. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/chefignore +96 -0
  246. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/metadata.rb +8 -0
  247. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/recipes/default.rb +8 -0
  248. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/Berksfile +3 -0
  249. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/README.md +4 -0
  250. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/chefignore +96 -0
  251. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/kitchen.yml +16 -0
  252. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/metadata.rb +8 -0
  253. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/recipes/default.rb +8 -0
  254. data/spec/unit/fixtures/cookbooks_api/chef_server_universe.json +56 -0
  255. data/spec/unit/fixtures/cookbooks_api/pruned_chef_server_universe.json +30 -0
  256. data/spec/unit/fixtures/cookbooks_api/pruned_small_universe.json +1322 -0
  257. data/spec/unit/fixtures/cookbooks_api/small_universe.json +2987 -0
  258. data/spec/unit/fixtures/cookbooks_api/universe.json +1 -0
  259. data/spec/unit/fixtures/cookbooks_api/update_fixtures.rb +33 -0
  260. data/spec/unit/fixtures/dev_cookbooks/README.md +16 -0
  261. data/spec/unit/fixtures/dev_cookbooks/bar-cookbook.gitbundle +0 -0
  262. data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/bin/.keep +0 -0
  263. data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/embedded/.keep +0 -0
  264. data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/embedded/bin/.keep +0 -0
  265. data/spec/unit/fixtures/eg_omnibus_dir/missing_component/bin/.keep +0 -0
  266. data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/apps/berkshelf/.keep +0 -0
  267. data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/apps/test-kitchen/.keep +0 -0
  268. data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/bin/.keep +0 -0
  269. data/spec/unit/fixtures/eg_omnibus_dir/valid/bin/.keep +0 -0
  270. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/integration_test +2 -0
  271. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/verify_me +5 -0
  272. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/chef-dk/.keep +0 -0
  273. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/chef/verify_me +3 -0
  274. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/test-kitchen/verify_me +2 -0
  275. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/bin/.keep +0 -0
  276. data/spec/unit/fixtures/example_app/Policyfile.rb +0 -0
  277. data/spec/unit/fixtures/example_cookbook/.gitignore +17 -0
  278. data/spec/unit/fixtures/example_cookbook/.kitchen.yml +16 -0
  279. data/spec/unit/fixtures/example_cookbook/Berksfile +3 -0
  280. data/spec/unit/fixtures/example_cookbook/README.md +4 -0
  281. data/spec/unit/fixtures/example_cookbook/chefignore +96 -0
  282. data/spec/unit/fixtures/example_cookbook/metadata.rb +8 -0
  283. data/spec/unit/fixtures/example_cookbook/recipes/default.rb +8 -0
  284. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore +17 -0
  285. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml +16 -0
  286. data/spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile +3 -0
  287. data/spec/unit/fixtures/example_cookbook_metadata_json_only/README.md +4 -0
  288. data/spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore +96 -0
  289. data/spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json +5 -0
  290. data/spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb +8 -0
  291. data/spec/unit/fixtures/example_cookbook_no_metadata/.gitignore +17 -0
  292. data/spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml +16 -0
  293. data/spec/unit/fixtures/example_cookbook_no_metadata/Berksfile +3 -0
  294. data/spec/unit/fixtures/example_cookbook_no_metadata/README.md +4 -0
  295. data/spec/unit/fixtures/example_cookbook_no_metadata/chefignore +96 -0
  296. data/spec/unit/fixtures/example_cookbook_no_metadata/recipes/default.rb +8 -0
  297. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/README.md +4 -0
  298. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/chefignore +96 -0
  299. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/metadata.rb +8 -0
  300. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/recipes/default.rb +8 -0
  301. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/Berksfile +3 -0
  302. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/README.md +4 -0
  303. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/chefignore +96 -0
  304. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/metadata.rb +9 -0
  305. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/recipes/default.rb +8 -0
  306. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/.kitchen.yml +16 -0
  307. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/Berksfile +3 -0
  308. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/README.md +4 -0
  309. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/chefignore +96 -0
  310. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/extra/extra_file.txt +0 -0
  311. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/metadata.rb +8 -0
  312. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/recipes/default.rb +8 -0
  313. data/spec/unit/fixtures/local_path_cookbooks/metadata-missing/README.md +2 -0
  314. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -0
  315. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -0
  316. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -0
  317. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -0
  318. data/spec/unit/generator_spec.rb +119 -0
  319. data/spec/unit/pager_spec.rb +117 -0
  320. data/spec/unit/policyfile/artifactory_cookbook_source_spec.rb +59 -0
  321. data/spec/unit/policyfile/attribute_merge_checker_spec.rb +80 -0
  322. data/spec/unit/policyfile/chef_repo_cookbook_source_spec.rb +93 -0
  323. data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +55 -0
  324. data/spec/unit/policyfile/chef_server_lock_fetcher_spec.rb +161 -0
  325. data/spec/unit/policyfile/community_cookbook_source_spec.rb +83 -0
  326. data/spec/unit/policyfile/comparison_base_spec.rb +340 -0
  327. data/spec/unit/policyfile/cookbook_location_specification_spec.rb +347 -0
  328. data/spec/unit/policyfile/cookbook_locks_spec.rb +527 -0
  329. data/spec/unit/policyfile/delivery_supermarket_source_spec.rb +129 -0
  330. data/spec/unit/policyfile/differ_spec.rb +686 -0
  331. data/spec/unit/policyfile/git_lock_fetcher_spec.rb +155 -0
  332. data/spec/unit/policyfile/included_policies_cookbook_source_spec.rb +242 -0
  333. data/spec/unit/policyfile/lister_spec.rb +268 -0
  334. data/spec/unit/policyfile/local_lock_fetcher_spec.rb +199 -0
  335. data/spec/unit/policyfile/lock_applier_spec.rb +100 -0
  336. data/spec/unit/policyfile/lock_fetcher_mixin_spec.rb +60 -0
  337. data/spec/unit/policyfile/null_cookbook_source_spec.rb +34 -0
  338. data/spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb +92 -0
  339. data/spec/unit/policyfile/remote_lock_fetcher_spec.rb +129 -0
  340. data/spec/unit/policyfile/reports/install_spec.rb +114 -0
  341. data/spec/unit/policyfile/reports/upload_spec.rb +94 -0
  342. data/spec/unit/policyfile/solution_dependencies_spec.rb +170 -0
  343. data/spec/unit/policyfile/source_uri_spec.rb +36 -0
  344. data/spec/unit/policyfile/storage_config_spec.rb +180 -0
  345. data/spec/unit/policyfile/undo_record_spec.rb +258 -0
  346. data/spec/unit/policyfile/undo_stack_spec.rb +265 -0
  347. data/spec/unit/policyfile/uploader_spec.rb +410 -0
  348. data/spec/unit/policyfile_demands_spec.rb +1197 -0
  349. data/spec/unit/policyfile_evaluation_spec.rb +628 -0
  350. data/spec/unit/policyfile_includes_dsl_spec.rb +220 -0
  351. data/spec/unit/policyfile_includes_spec.rb +720 -0
  352. data/spec/unit/policyfile_install_with_includes_spec.rb +232 -0
  353. data/spec/unit/policyfile_lock_build_spec.rb +1065 -0
  354. data/spec/unit/policyfile_lock_install_spec.rb +137 -0
  355. data/spec/unit/policyfile_lock_serialization_spec.rb +424 -0
  356. data/spec/unit/policyfile_lock_validation_spec.rb +608 -0
  357. data/spec/unit/policyfile_services/clean_policies_spec.rb +236 -0
  358. data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +272 -0
  359. data/spec/unit/policyfile_services/export_repo_spec.rb +473 -0
  360. data/spec/unit/policyfile_services/install_spec.rb +209 -0
  361. data/spec/unit/policyfile_services/push_archive_spec.rb +359 -0
  362. data/spec/unit/policyfile_services/push_spec.rb +249 -0
  363. data/spec/unit/policyfile_services/rm_policy_group_spec.rb +237 -0
  364. data/spec/unit/policyfile_services/rm_policy_spec.rb +263 -0
  365. data/spec/unit/policyfile_services/show_policy_spec.rb +887 -0
  366. data/spec/unit/policyfile_services/undelete_spec.rb +302 -0
  367. data/spec/unit/policyfile_services/update_attributes_spec.rb +229 -0
  368. data/spec/unit/policyfile_services/update_spec.rb +162 -0
  369. data/spec/unit/service_exception_inspectors/base_spec.rb +41 -0
  370. data/spec/unit/service_exception_inspectors/http_spec.rb +138 -0
  371. data/spec/unit/shell_out_spec.rb +34 -0
  372. metadata +796 -0
@@ -0,0 +1,2987 @@
1
+ {
2
+ "nginx": {
3
+ "0.10.0": {
4
+ "location_type": "opscode",
5
+ "location_path": "https://supermarket.chef.io/api/v1",
6
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.10.0/download",
7
+ "dependencies": {
8
+ "runit": ">= 0.0.0",
9
+ "build-essential": ">= 0.0.0"
10
+ }
11
+ },
12
+ "0.12.1": {
13
+ "location_type": "opscode",
14
+ "location_path": "https://supermarket.chef.io/api/v1",
15
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.12.1/download",
16
+ "dependencies": {
17
+ "runit": ">= 0.0.0",
18
+ "build-essential": ">= 0.0.0"
19
+ }
20
+ },
21
+ "0.14.0": {
22
+ "location_type": "opscode",
23
+ "location_path": "https://supermarket.chef.io/api/v1",
24
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.14.0/download",
25
+ "dependencies": {
26
+ "runit": ">= 0.0.0",
27
+ "build-essential": ">= 0.0.0"
28
+ }
29
+ },
30
+ "0.14.1": {
31
+ "location_type": "opscode",
32
+ "location_path": "https://supermarket.chef.io/api/v1",
33
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.14.1/download",
34
+ "dependencies": {
35
+ "runit": ">= 0.0.0",
36
+ "build-essential": ">= 0.0.0"
37
+ }
38
+ },
39
+ "0.14.2": {
40
+ "location_type": "opscode",
41
+ "location_path": "https://supermarket.chef.io/api/v1",
42
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.14.2/download",
43
+ "dependencies": {
44
+ "runit": ">= 0.0.0",
45
+ "build-essential": ">= 0.0.0"
46
+ }
47
+ },
48
+ "0.14.3": {
49
+ "location_type": "opscode",
50
+ "location_path": "https://supermarket.chef.io/api/v1",
51
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.14.3/download",
52
+ "dependencies": {
53
+ "runit": ">= 0.0.0",
54
+ "build-essential": ">= 0.0.0"
55
+ }
56
+ },
57
+ "0.14.4": {
58
+ "location_type": "opscode",
59
+ "location_path": "https://supermarket.chef.io/api/v1",
60
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.14.4/download",
61
+ "dependencies": {
62
+ "build-essential": ">= 0.0.0",
63
+ "runit": ">= 0.0.0"
64
+ }
65
+ },
66
+ "0.99.0": {
67
+ "location_type": "opscode",
68
+ "location_path": "https://supermarket.chef.io/api/v1",
69
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.99.0/download",
70
+ "dependencies": {
71
+ "build-essential": ">= 0.0.0",
72
+ "runit": ">= 0.0.0"
73
+ }
74
+ },
75
+ "0.99.2": {
76
+ "location_type": "opscode",
77
+ "location_path": "https://supermarket.chef.io/api/v1",
78
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.99.2/download",
79
+ "dependencies": {
80
+ "build-essential": ">= 0.0.0",
81
+ "runit": ">= 0.0.0"
82
+ }
83
+ },
84
+ "0.100.0": {
85
+ "location_type": "opscode",
86
+ "location_path": "https://supermarket.chef.io/api/v1",
87
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.100.0/download",
88
+ "dependencies": {
89
+ "build-essential": ">= 0.0.0",
90
+ "runit": ">= 0.0.0",
91
+ "bluepill": ">= 0.0.0"
92
+ }
93
+ },
94
+ "0.100.2": {
95
+ "location_type": "opscode",
96
+ "location_path": "https://supermarket.chef.io/api/v1",
97
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.100.2/download",
98
+ "dependencies": {
99
+ "build-essential": ">= 0.0.0",
100
+ "runit": ">= 0.0.0",
101
+ "bluepill": ">= 0.0.0"
102
+ }
103
+ },
104
+ "0.101.0": {
105
+ "location_type": "opscode",
106
+ "location_path": "https://supermarket.chef.io/api/v1",
107
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.101.0/download",
108
+ "dependencies": {
109
+ "build-essential": ">= 0.0.0",
110
+ "runit": ">= 0.0.0",
111
+ "bluepill": ">= 0.0.0",
112
+ "ohai": "~> 1.0.2"
113
+ }
114
+ },
115
+ "0.101.2": {
116
+ "location_type": "opscode",
117
+ "location_path": "https://supermarket.chef.io/api/v1",
118
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.101.2/download",
119
+ "dependencies": {
120
+ "build-essential": ">= 0.0.0",
121
+ "runit": ">= 0.0.0",
122
+ "bluepill": ">= 0.0.0",
123
+ "ohai": "~> 1.0.2"
124
+ }
125
+ },
126
+ "0.101.4": {
127
+ "location_type": "opscode",
128
+ "location_path": "https://supermarket.chef.io/api/v1",
129
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.101.4/download",
130
+ "dependencies": {
131
+ "build-essential": ">= 0.0.0",
132
+ "runit": ">= 0.0.0",
133
+ "bluepill": ">= 0.0.0",
134
+ "yum": ">= 0.0.0",
135
+ "ohai": "~> 1.0.2"
136
+ }
137
+ },
138
+ "0.101.6": {
139
+ "location_type": "opscode",
140
+ "location_path": "https://supermarket.chef.io/api/v1",
141
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.101.6/download",
142
+ "dependencies": {
143
+ "build-essential": ">= 0.0.0",
144
+ "runit": ">= 0.0.0",
145
+ "bluepill": ">= 0.0.0",
146
+ "yum": ">= 0.0.0",
147
+ "ohai": "~> 1.0.2"
148
+ }
149
+ },
150
+ "1.0.0": {
151
+ "location_type": "opscode",
152
+ "location_path": "https://supermarket.chef.io/api/v1",
153
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.0.0/download",
154
+ "dependencies": {
155
+ "build-essential": ">= 0.0.0",
156
+ "runit": ">= 0.0.0",
157
+ "bluepill": ">= 0.0.0",
158
+ "yum": ">= 0.0.0",
159
+ "ohai": "~> 1.0.2"
160
+ }
161
+ },
162
+ "1.0.2": {
163
+ "location_type": "opscode",
164
+ "location_path": "https://supermarket.chef.io/api/v1",
165
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.0.2/download",
166
+ "dependencies": {
167
+ "build-essential": ">= 0.0.0",
168
+ "runit": ">= 0.0.0",
169
+ "bluepill": ">= 0.0.0",
170
+ "yum": ">= 0.0.0",
171
+ "ohai": ">= 1.1.0"
172
+ }
173
+ },
174
+ "1.1.0": {
175
+ "location_type": "opscode",
176
+ "location_path": "https://supermarket.chef.io/api/v1",
177
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.1.0/download",
178
+ "dependencies": {
179
+ "build-essential": ">= 0.0.0",
180
+ "ohai": ">= 1.1.0"
181
+ }
182
+ },
183
+ "1.1.2": {
184
+ "location_type": "opscode",
185
+ "location_path": "https://supermarket.chef.io/api/v1",
186
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.1.2/download",
187
+ "dependencies": {
188
+ "build-essential": ">= 0.0.0",
189
+ "ohai": ">= 1.1.2"
190
+ }
191
+ },
192
+ "1.1.4": {
193
+ "location_type": "opscode",
194
+ "location_path": "https://supermarket.chef.io/api/v1",
195
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.1.4/download",
196
+ "dependencies": {
197
+ "build-essential": ">= 0.0.0",
198
+ "ohai": ">= 1.1.4"
199
+ }
200
+ },
201
+ "1.2.0": {
202
+ "location_type": "opscode",
203
+ "location_path": "https://supermarket.chef.io/api/v1",
204
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.2.0/download",
205
+ "dependencies": {
206
+ "build-essential": ">= 0.0.0",
207
+ "ohai": ">= 1.1.4"
208
+ }
209
+ },
210
+ "1.3.0": {
211
+ "location_type": "opscode",
212
+ "location_path": "https://supermarket.chef.io/api/v1",
213
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.3.0/download",
214
+ "dependencies": {
215
+ "build-essential": ">= 0.0.0",
216
+ "ohai": ">= 1.1.4"
217
+ }
218
+ },
219
+ "1.4.0": {
220
+ "location_type": "opscode",
221
+ "location_path": "https://supermarket.chef.io/api/v1",
222
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.4.0/download",
223
+ "dependencies": {
224
+ "build-essential": ">= 0.0.0",
225
+ "yum": ">= 0.0.0",
226
+ "apt": ">= 0.0.0",
227
+ "ohai": ">= 1.1.4"
228
+ }
229
+ },
230
+ "1.6.0": {
231
+ "location_type": "opscode",
232
+ "location_path": "https://supermarket.chef.io/api/v1",
233
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.6.0/download",
234
+ "dependencies": {
235
+ "build-essential": ">= 0.0.0",
236
+ "yum": ">= 0.0.0",
237
+ "apt": ">= 0.0.0",
238
+ "runit": ">= 0.0.0",
239
+ "ohai": ">= 1.1.4"
240
+ }
241
+ },
242
+ "1.7.0": {
243
+ "location_type": "opscode",
244
+ "location_path": "https://supermarket.chef.io/api/v1",
245
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.7.0/download",
246
+ "dependencies": {
247
+ "build-essential": ">= 0.0.0",
248
+ "yum": ">= 0.0.0",
249
+ "apt": ">= 0.0.0",
250
+ "runit": ">= 0.0.0",
251
+ "ohai": ">= 1.1.4"
252
+ }
253
+ },
254
+ "1.8.0": {
255
+ "location_type": "opscode",
256
+ "location_path": "https://supermarket.chef.io/api/v1",
257
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/1.8.0/download",
258
+ "dependencies": {
259
+ "build-essential": ">= 0.0.0",
260
+ "yum": ">= 0.0.0",
261
+ "apt": ">= 0.0.0",
262
+ "runit": ">= 0.0.0",
263
+ "ohai": ">= 1.1.4"
264
+ }
265
+ },
266
+ "2.0.0": {
267
+ "location_type": "opscode",
268
+ "location_path": "https://supermarket.chef.io/api/v1",
269
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.0.0/download",
270
+ "dependencies": {
271
+ "apt": "~> 2.2.0",
272
+ "bluepill": "~> 2.3.0",
273
+ "build-essential": "~> 1.4.0",
274
+ "ohai": "~> 1.1.0",
275
+ "runit": "~> 1.2.0",
276
+ "yum": "~> 2.3.0"
277
+ }
278
+ },
279
+ "2.0.2": {
280
+ "location_type": "opscode",
281
+ "location_path": "https://supermarket.chef.io/api/v1",
282
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.0.2/download",
283
+ "dependencies": {
284
+ "apt": "~> 2.2.0",
285
+ "bluepill": "~> 2.3.0",
286
+ "build-essential": "~> 1.4.0",
287
+ "ohai": "~> 1.1.0",
288
+ "runit": "~> 1.2.0",
289
+ "yum": "~> 2.3.0"
290
+ }
291
+ },
292
+ "2.0.4": {
293
+ "location_type": "opscode",
294
+ "location_path": "https://supermarket.chef.io/api/v1",
295
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.0.4/download",
296
+ "dependencies": {
297
+ "apt": "~> 2.2.0",
298
+ "bluepill": "~> 2.3.0",
299
+ "build-essential": "~> 1.4.0",
300
+ "ohai": "~> 1.1.0",
301
+ "runit": "~> 1.2.0",
302
+ "yum": "~> 2.3.0"
303
+ }
304
+ },
305
+ "2.0.6": {
306
+ "location_type": "opscode",
307
+ "location_path": "https://supermarket.chef.io/api/v1",
308
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.0.6/download",
309
+ "dependencies": {
310
+ "apt": "~> 2.2.0",
311
+ "bluepill": "~> 2.3.0",
312
+ "build-essential": "~> 1.4.0",
313
+ "ohai": "~> 1.1.0",
314
+ "runit": "~> 1.2.0",
315
+ "yum": "< 3.0.0"
316
+ }
317
+ },
318
+ "2.0.8": {
319
+ "location_type": "opscode",
320
+ "location_path": "https://supermarket.chef.io/api/v1",
321
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.0.8/download",
322
+ "dependencies": {
323
+ "apt": "~> 2.2.0",
324
+ "bluepill": "~> 2.3.0",
325
+ "build-essential": "~> 1.4.0",
326
+ "ohai": "~> 1.1.0",
327
+ "runit": "~> 1.2.0",
328
+ "yum": "< 3.0.0"
329
+ }
330
+ },
331
+ "2.1.0": {
332
+ "location_type": "opscode",
333
+ "location_path": "https://supermarket.chef.io/api/v1",
334
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.1.0/download",
335
+ "dependencies": {
336
+ "apt": "~> 2.2.0",
337
+ "bluepill": "~> 2.3.0",
338
+ "build-essential": "~> 1.4.0",
339
+ "ohai": "~> 1.1.0",
340
+ "runit": "~> 1.2.0",
341
+ "yum": "~> 3.0.0",
342
+ "yum-epel": ">= 0.0.0"
343
+ }
344
+ },
345
+ "2.2.0": {
346
+ "location_type": "opscode",
347
+ "location_path": "https://supermarket.chef.io/api/v1",
348
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.2.0/download",
349
+ "dependencies": {
350
+ "apt": "~> 2.2.0",
351
+ "bluepill": "~> 2.3.0",
352
+ "build-essential": "~> 1.4.0",
353
+ "ohai": "~> 1.1.0",
354
+ "runit": "~> 1.2.0",
355
+ "yum": "~> 3.0.0",
356
+ "yum-epel": ">= 0.0.0"
357
+ }
358
+ },
359
+ "2.2.2": {
360
+ "location_type": "opscode",
361
+ "location_path": "https://supermarket.chef.io/api/v1",
362
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.2.2/download",
363
+ "dependencies": {
364
+ "apt": "~> 2.2.0",
365
+ "bluepill": "~> 2.3.0",
366
+ "build-essential": "~> 1.4.0",
367
+ "ohai": "~> 1.1.0",
368
+ "runit": "~> 1.2.0",
369
+ "yum": "~> 3.0.0",
370
+ "yum-epel": ">= 0.0.0"
371
+ }
372
+ },
373
+ "2.3.0": {
374
+ "location_type": "opscode",
375
+ "location_path": "https://supermarket.chef.io/api/v1",
376
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.3.0/download",
377
+ "dependencies": {
378
+ "apt": "~> 2.2.0",
379
+ "bluepill": "~> 2.3.0",
380
+ "build-essential": "~> 1.4.0",
381
+ "ohai": "~> 1.1.0",
382
+ "runit": "~> 1.2.0",
383
+ "yum": "~> 3.0.0",
384
+ "yum-epel": ">= 0.0.0"
385
+ }
386
+ },
387
+ "2.4.0": {
388
+ "location_type": "opscode",
389
+ "location_path": "https://supermarket.chef.io/api/v1",
390
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.4.0/download",
391
+ "dependencies": {
392
+ "apt": "~> 2.2.0",
393
+ "bluepill": "~> 2.3.0",
394
+ "build-essential": "~> 1.4.0",
395
+ "ohai": "~> 1.1.0",
396
+ "runit": "~> 1.2.0",
397
+ "yum": "~> 3.0.0",
398
+ "yum-epel": ">= 0.0.0"
399
+ }
400
+ },
401
+ "2.4.1": {
402
+ "location_type": "opscode",
403
+ "location_path": "https://supermarket.chef.io/api/v1",
404
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.4.1/download",
405
+ "dependencies": {
406
+ "apt": "~> 2.2.0",
407
+ "bluepill": "~> 2.3.0",
408
+ "build-essential": "~> 1.4.0",
409
+ "ohai": "~> 1.1.0",
410
+ "runit": "~> 1.2.0",
411
+ "yum": "~> 3.0.0",
412
+ "yum-epel": ">= 0.0.0"
413
+ }
414
+ },
415
+ "2.4.2": {
416
+ "location_type": "opscode",
417
+ "location_path": "https://supermarket.chef.io/api/v1",
418
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.4.2/download",
419
+ "dependencies": {
420
+ "apt": "~> 2.2.0",
421
+ "bluepill": "~> 2.3.0",
422
+ "build-essential": "~> 1.4.0",
423
+ "ohai": "~> 1.1.0",
424
+ "runit": "~> 1.2.0",
425
+ "yum": "~> 3.0.0",
426
+ "yum-epel": ">= 0.0.0"
427
+ }
428
+ },
429
+ "2.4.4": {
430
+ "location_type": "opscode",
431
+ "location_path": "https://supermarket.chef.io/api/v1",
432
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.4.4/download",
433
+ "dependencies": {
434
+ "apt": "~> 2.2.0",
435
+ "bluepill": "~> 2.3.0",
436
+ "build-essential": "~> 2.0.0",
437
+ "ohai": "~> 1.1.0",
438
+ "runit": "~> 1.2.0",
439
+ "yum-epel": "~> 0.3.0"
440
+ }
441
+ },
442
+ "2.5.0": {
443
+ "location_type": "opscode",
444
+ "location_path": "https://supermarket.chef.io/api/v1",
445
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.5.0/download",
446
+ "dependencies": {
447
+ "apt": "~> 2.2.0",
448
+ "bluepill": "~> 2.3.0",
449
+ "build-essential": "~> 2.0.0",
450
+ "ohai": "~> 1.1.0",
451
+ "runit": "~> 1.2.0",
452
+ "yum-epel": "~> 0.3.0"
453
+ }
454
+ },
455
+ "2.6.2": {
456
+ "location_type": "opscode",
457
+ "location_path": "https://supermarket.chef.io/api/v1",
458
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.6.2/download",
459
+ "dependencies": {
460
+ "apt": "~> 2.2.0",
461
+ "bluepill": "~> 2.3.0",
462
+ "build-essential": "~> 2.0.0",
463
+ "ohai": "~> 1.1.0",
464
+ "runit": "~> 1.2.0",
465
+ "yum-epel": "~> 0.3.0"
466
+ }
467
+ },
468
+ "2.6.0": {
469
+ "location_type": "opscode",
470
+ "location_path": "https://supermarket.chef.io/api/v1",
471
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.6.0/download",
472
+ "dependencies": {
473
+ "apt": "~> 2.2.0",
474
+ "bluepill": "~> 2.3.0",
475
+ "build-essential": "~> 2.0.0",
476
+ "ohai": "~> 1.1.0",
477
+ "runit": "~> 1.2.0",
478
+ "yum-epel": "~> 0.3.0"
479
+ }
480
+ },
481
+ "2.7.0": {
482
+ "location_type": "opscode",
483
+ "location_path": "https://supermarket.chef.io/api/v1",
484
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.7.0/download",
485
+ "dependencies": {
486
+ "apt": "~> 2.2.0",
487
+ "bluepill": "~> 2.3.0",
488
+ "build-essential": "~> 2.0.0",
489
+ "ohai": "~> 2.0.0",
490
+ "runit": "~> 1.2.0",
491
+ "yum-epel": "~> 0.3.0"
492
+ }
493
+ },
494
+ "2.7.2": {
495
+ "location_type": "opscode",
496
+ "location_path": "https://supermarket.chef.io/api/v1",
497
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.7.2/download",
498
+ "dependencies": {
499
+ "apt": "~> 2.2.0",
500
+ "bluepill": "~> 2.3.0",
501
+ "build-essential": "~> 2.0.0",
502
+ "ohai": "~> 2.0.0",
503
+ "runit": "~> 1.2.0",
504
+ "yum-epel": "~> 0.3.0"
505
+ }
506
+ },
507
+ "2.7.4": {
508
+ "location_type": "opscode",
509
+ "location_path": "https://supermarket.chef.io/api/v1",
510
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/2.7.4/download",
511
+ "dependencies": {
512
+ "apt": "~> 2.2.0",
513
+ "bluepill": "~> 2.3.0",
514
+ "build-essential": "~> 2.0.0",
515
+ "ohai": "~> 2.0.0",
516
+ "runit": "~> 1.2.0",
517
+ "yum-epel": "~> 0.3.0"
518
+ }
519
+ },
520
+ "0.8.0": {
521
+ "location_type": "opscode",
522
+ "location_path": "https://supermarket.chef.io/api/v1",
523
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/nginx/versions/0.8.0/download",
524
+ "dependencies": {
525
+ }
526
+ }
527
+ },
528
+ "mysql": {
529
+ "0.15.0": {
530
+ "location_type": "opscode",
531
+ "location_path": "https://supermarket.chef.io/api/v1",
532
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.15.0/download",
533
+ "dependencies": {
534
+ "openssl": ">= 0.0.0"
535
+ }
536
+ },
537
+ "0.20.0": {
538
+ "location_type": "opscode",
539
+ "location_path": "https://supermarket.chef.io/api/v1",
540
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.20.0/download",
541
+ "dependencies": {
542
+ "openssl": ">= 0.0.0"
543
+ }
544
+ },
545
+ "0.21.0": {
546
+ "location_type": "opscode",
547
+ "location_path": "https://supermarket.chef.io/api/v1",
548
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.21.0/download",
549
+ "dependencies": {
550
+ "openssl": ">= 0.0.0"
551
+ }
552
+ },
553
+ "0.21.1": {
554
+ "location_type": "opscode",
555
+ "location_path": "https://supermarket.chef.io/api/v1",
556
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.21.1/download",
557
+ "dependencies": {
558
+ "openssl": ">= 0.0.0"
559
+ }
560
+ },
561
+ "0.21.2": {
562
+ "location_type": "opscode",
563
+ "location_path": "https://supermarket.chef.io/api/v1",
564
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.21.2/download",
565
+ "dependencies": {
566
+ "openssl": ">= 0.0.0"
567
+ }
568
+ },
569
+ "0.21.3": {
570
+ "location_type": "opscode",
571
+ "location_path": "https://supermarket.chef.io/api/v1",
572
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.21.3/download",
573
+ "dependencies": {
574
+ "openssl": ">= 0.0.0"
575
+ }
576
+ },
577
+ "0.21.5": {
578
+ "location_type": "opscode",
579
+ "location_path": "https://supermarket.chef.io/api/v1",
580
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.21.5/download",
581
+ "dependencies": {
582
+ "openssl": ">= 0.0.0"
583
+ }
584
+ },
585
+ "0.22.0": {
586
+ "location_type": "opscode",
587
+ "location_path": "https://supermarket.chef.io/api/v1",
588
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.22.0/download",
589
+ "dependencies": {
590
+ "openssl": ">= 0.0.0"
591
+ }
592
+ },
593
+ "0.23.0": {
594
+ "location_type": "opscode",
595
+ "location_path": "https://supermarket.chef.io/api/v1",
596
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.23.0/download",
597
+ "dependencies": {
598
+ "openssl": ">= 0.0.0"
599
+ }
600
+ },
601
+ "0.23.1": {
602
+ "location_type": "opscode",
603
+ "location_path": "https://supermarket.chef.io/api/v1",
604
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.23.1/download",
605
+ "dependencies": {
606
+ "openssl": ">= 0.0.0"
607
+ }
608
+ },
609
+ "0.24.0": {
610
+ "location_type": "opscode",
611
+ "location_path": "https://supermarket.chef.io/api/v1",
612
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.24.0/download",
613
+ "dependencies": {
614
+ "openssl": ">= 0.0.0"
615
+ }
616
+ },
617
+ "0.24.1": {
618
+ "location_type": "opscode",
619
+ "location_path": "https://supermarket.chef.io/api/v1",
620
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.24.1/download",
621
+ "dependencies": {
622
+ "openssl": ">= 0.0.0"
623
+ }
624
+ },
625
+ "0.24.2": {
626
+ "location_type": "opscode",
627
+ "location_path": "https://supermarket.chef.io/api/v1",
628
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.24.2/download",
629
+ "dependencies": {
630
+ "openssl": ">= 0.0.0"
631
+ }
632
+ },
633
+ "0.24.3": {
634
+ "location_type": "opscode",
635
+ "location_path": "https://supermarket.chef.io/api/v1",
636
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.24.3/download",
637
+ "dependencies": {
638
+ "openssl": ">= 0.0.0"
639
+ }
640
+ },
641
+ "0.24.4": {
642
+ "location_type": "opscode",
643
+ "location_path": "https://supermarket.chef.io/api/v1",
644
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.24.4/download",
645
+ "dependencies": {
646
+ "openssl": ">= 0.0.0"
647
+ }
648
+ },
649
+ "1.0.0": {
650
+ "location_type": "opscode",
651
+ "location_path": "https://supermarket.chef.io/api/v1",
652
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.0/download",
653
+ "dependencies": {
654
+ "openssl": ">= 0.0.0"
655
+ }
656
+ },
657
+ "1.0.1": {
658
+ "location_type": "opscode",
659
+ "location_path": "https://supermarket.chef.io/api/v1",
660
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.1/download",
661
+ "dependencies": {
662
+ "openssl": ">= 0.0.0"
663
+ }
664
+ },
665
+ "1.0.2": {
666
+ "location_type": "opscode",
667
+ "location_path": "https://supermarket.chef.io/api/v1",
668
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.2/download",
669
+ "dependencies": {
670
+ "openssl": ">= 0.0.0"
671
+ }
672
+ },
673
+ "1.0.3": {
674
+ "location_type": "opscode",
675
+ "location_path": "https://supermarket.chef.io/api/v1",
676
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.3/download",
677
+ "dependencies": {
678
+ "openssl": ">= 0.0.0"
679
+ }
680
+ },
681
+ "1.0.4": {
682
+ "location_type": "opscode",
683
+ "location_path": "https://supermarket.chef.io/api/v1",
684
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.4/download",
685
+ "dependencies": {
686
+ "openssl": ">= 0.0.0"
687
+ }
688
+ },
689
+ "1.0.5": {
690
+ "location_type": "opscode",
691
+ "location_path": "https://supermarket.chef.io/api/v1",
692
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.5/download",
693
+ "dependencies": {
694
+ "openssl": ">= 0.0.0"
695
+ }
696
+ },
697
+ "1.0.6": {
698
+ "location_type": "opscode",
699
+ "location_path": "https://supermarket.chef.io/api/v1",
700
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.6/download",
701
+ "dependencies": {
702
+ "openssl": ">= 0.0.0"
703
+ }
704
+ },
705
+ "1.0.7": {
706
+ "location_type": "opscode",
707
+ "location_path": "https://supermarket.chef.io/api/v1",
708
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.7/download",
709
+ "dependencies": {
710
+ "openssl": ">= 0.0.0"
711
+ }
712
+ },
713
+ "1.0.8": {
714
+ "location_type": "opscode",
715
+ "location_path": "https://supermarket.chef.io/api/v1",
716
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.0.8/download",
717
+ "dependencies": {
718
+ "openssl": ">= 0.0.0"
719
+ }
720
+ },
721
+ "1.2.1": {
722
+ "location_type": "opscode",
723
+ "location_path": "https://supermarket.chef.io/api/v1",
724
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.2.1/download",
725
+ "dependencies": {
726
+ "openssl": ">= 0.0.0"
727
+ }
728
+ },
729
+ "1.2.2": {
730
+ "location_type": "opscode",
731
+ "location_path": "https://supermarket.chef.io/api/v1",
732
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.2.2/download",
733
+ "dependencies": {
734
+ "openssl": ">= 0.0.0"
735
+ }
736
+ },
737
+ "1.2.4": {
738
+ "location_type": "opscode",
739
+ "location_path": "https://supermarket.chef.io/api/v1",
740
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.2.4/download",
741
+ "dependencies": {
742
+ "openssl": ">= 0.0.0"
743
+ }
744
+ },
745
+ "1.2.6": {
746
+ "location_type": "opscode",
747
+ "location_path": "https://supermarket.chef.io/api/v1",
748
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.2.6/download",
749
+ "dependencies": {
750
+ "openssl": ">= 0.0.0",
751
+ "windows": ">= 0.0.0"
752
+ }
753
+ },
754
+ "1.3.0": {
755
+ "location_type": "opscode",
756
+ "location_path": "https://supermarket.chef.io/api/v1",
757
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/1.3.0/download",
758
+ "dependencies": {
759
+ "openssl": ">= 0.0.0",
760
+ "build-essential": ">= 0.0.0"
761
+ }
762
+ },
763
+ "2.0.0": {
764
+ "location_type": "opscode",
765
+ "location_path": "https://supermarket.chef.io/api/v1",
766
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/2.0.0/download",
767
+ "dependencies": {
768
+ "openssl": ">= 0.0.0",
769
+ "build-essential": ">= 0.0.0"
770
+ }
771
+ },
772
+ "2.0.2": {
773
+ "location_type": "opscode",
774
+ "location_path": "https://supermarket.chef.io/api/v1",
775
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/2.0.2/download",
776
+ "dependencies": {
777
+ "openssl": ">= 0.0.0",
778
+ "build-essential": ">= 0.0.0"
779
+ }
780
+ },
781
+ "2.1.0": {
782
+ "location_type": "opscode",
783
+ "location_path": "https://supermarket.chef.io/api/v1",
784
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/2.1.0/download",
785
+ "dependencies": {
786
+ "openssl": ">= 0.0.0",
787
+ "build-essential": ">= 0.0.0"
788
+ }
789
+ },
790
+ "2.1.2": {
791
+ "location_type": "opscode",
792
+ "location_path": "https://supermarket.chef.io/api/v1",
793
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/2.1.2/download",
794
+ "dependencies": {
795
+ "openssl": ">= 0.0.0",
796
+ "build-essential": ">= 0.0.0"
797
+ }
798
+ },
799
+ "3.0.0": {
800
+ "location_type": "opscode",
801
+ "location_path": "https://supermarket.chef.io/api/v1",
802
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.0/download",
803
+ "dependencies": {
804
+ "openssl": ">= 0.0.0",
805
+ "build-essential": ">= 0.0.0"
806
+ }
807
+ },
808
+ "3.0.2": {
809
+ "location_type": "opscode",
810
+ "location_path": "https://supermarket.chef.io/api/v1",
811
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.2/download",
812
+ "dependencies": {
813
+ "openssl": ">= 0.0.0",
814
+ "build-essential": "> 1.1.0"
815
+ }
816
+ },
817
+ "3.0.4": {
818
+ "location_type": "opscode",
819
+ "location_path": "https://supermarket.chef.io/api/v1",
820
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.4/download",
821
+ "dependencies": {
822
+ "openssl": ">= 0.0.0",
823
+ "build-essential": "> 1.1.0"
824
+ }
825
+ },
826
+ "3.0.6": {
827
+ "location_type": "opscode",
828
+ "location_path": "https://supermarket.chef.io/api/v1",
829
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.6/download",
830
+ "dependencies": {
831
+ "openssl": "~> 1.1.0",
832
+ "build-essential": "~> 1.4.0"
833
+ }
834
+ },
835
+ "3.0.8": {
836
+ "location_type": "opscode",
837
+ "location_path": "https://supermarket.chef.io/api/v1",
838
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.8/download",
839
+ "dependencies": {
840
+ "openssl": "~> 1.1.0",
841
+ "build-essential": "~> 1.4.0"
842
+ }
843
+ },
844
+ "3.0.10": {
845
+ "location_type": "opscode",
846
+ "location_path": "https://supermarket.chef.io/api/v1",
847
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.10/download",
848
+ "dependencies": {
849
+ "openssl": "~> 1.1.0",
850
+ "build-essential": "~> 1.4.0"
851
+ }
852
+ },
853
+ "3.0.12": {
854
+ "location_type": "opscode",
855
+ "location_path": "https://supermarket.chef.io/api/v1",
856
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/3.0.12/download",
857
+ "dependencies": {
858
+ "openssl": "~> 1.1.0",
859
+ "build-essential": "~> 1.4.0"
860
+ }
861
+ },
862
+ "4.0.0": {
863
+ "location_type": "opscode",
864
+ "location_path": "https://supermarket.chef.io/api/v1",
865
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.0/download",
866
+ "dependencies": {
867
+ "openssl": "~> 1.1.0",
868
+ "build-essential": "~> 1.4.0"
869
+ }
870
+ },
871
+ "4.0.2": {
872
+ "location_type": "opscode",
873
+ "location_path": "https://supermarket.chef.io/api/v1",
874
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.2/download",
875
+ "dependencies": {
876
+ "openssl": "~> 1.1.0",
877
+ "build-essential": "~> 1.4.0"
878
+ }
879
+ },
880
+ "4.0.4": {
881
+ "location_type": "opscode",
882
+ "location_path": "https://supermarket.chef.io/api/v1",
883
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.4/download",
884
+ "dependencies": {
885
+ "openssl": "~> 1.1.0",
886
+ "build-essential": "~> 1.4.0"
887
+ }
888
+ },
889
+ "5.3.6": {
890
+ "location_type": "opscode",
891
+ "location_path": "https://supermarket.chef.io/api/v1",
892
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.3.6/download",
893
+ "dependencies": {
894
+ "yum-mysql-community": ">= 0.0.0"
895
+ }
896
+ },
897
+ "4.0.6": {
898
+ "location_type": "opscode",
899
+ "location_path": "https://supermarket.chef.io/api/v1",
900
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.6/download",
901
+ "dependencies": {
902
+ "openssl": "~> 1.1.0",
903
+ "build-essential": "~> 1.4.0"
904
+ }
905
+ },
906
+ "4.0.8": {
907
+ "location_type": "opscode",
908
+ "location_path": "https://supermarket.chef.io/api/v1",
909
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.8/download",
910
+ "dependencies": {
911
+ "openssl": "~> 1.1.0",
912
+ "build-essential": "~> 1.4.0"
913
+ }
914
+ },
915
+ "4.0.10": {
916
+ "location_type": "opscode",
917
+ "location_path": "https://supermarket.chef.io/api/v1",
918
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.10/download",
919
+ "dependencies": {
920
+ "openssl": "~> 1.1.0",
921
+ "build-essential": "~> 1.4.0"
922
+ }
923
+ },
924
+ "4.0.12": {
925
+ "location_type": "opscode",
926
+ "location_path": "https://supermarket.chef.io/api/v1",
927
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.12/download",
928
+ "dependencies": {
929
+ "openssl": "~> 1.1.0",
930
+ "build-essential": "~> 1.4.0"
931
+ }
932
+ },
933
+ "4.0.14": {
934
+ "location_type": "opscode",
935
+ "location_path": "https://supermarket.chef.io/api/v1",
936
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.14/download",
937
+ "dependencies": {
938
+ "openssl": "~> 1.1.0",
939
+ "build-essential": "~> 1.4.0"
940
+ }
941
+ },
942
+ "4.0.18": {
943
+ "location_type": "opscode",
944
+ "location_path": "https://supermarket.chef.io/api/v1",
945
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.18/download",
946
+ "dependencies": {
947
+ "openssl": "~> 1.1.0",
948
+ "build-essential": "~> 1.4.0"
949
+ }
950
+ },
951
+ "4.0.20": {
952
+ "location_type": "opscode",
953
+ "location_path": "https://supermarket.chef.io/api/v1",
954
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.0.20/download",
955
+ "dependencies": {
956
+ "openssl": "~> 1.1.0",
957
+ "build-essential": "~> 1.4.0"
958
+ }
959
+ },
960
+ "4.1.0": {
961
+ "location_type": "opscode",
962
+ "location_path": "https://supermarket.chef.io/api/v1",
963
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.1.0/download",
964
+ "dependencies": {
965
+ "openssl": "~> 1.1.0",
966
+ "build-essential": "~> 1.4.0"
967
+ }
968
+ },
969
+ "4.1.1": {
970
+ "location_type": "opscode",
971
+ "location_path": "https://supermarket.chef.io/api/v1",
972
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.1.1/download",
973
+ "dependencies": {
974
+ "openssl": "~> 1.1.0",
975
+ "build-essential": "~> 1.4.0",
976
+ "homebrew": ">= 0.0.0",
977
+ "windows": ">= 0.0.0"
978
+ }
979
+ },
980
+ "4.1.2": {
981
+ "location_type": "opscode",
982
+ "location_path": "https://supermarket.chef.io/api/v1",
983
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/4.1.2/download",
984
+ "dependencies": {
985
+ "openssl": "~> 1.1.0",
986
+ "build-essential": "~> 1.4.0",
987
+ "homebrew": ">= 0.0.0",
988
+ "windows": ">= 0.0.0"
989
+ }
990
+ },
991
+ "5.3.0": {
992
+ "location_type": "opscode",
993
+ "location_path": "https://supermarket.chef.io/api/v1",
994
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.3.0/download",
995
+ "dependencies": {
996
+ "yum-mysql-community": ">= 0.0.0"
997
+ }
998
+ },
999
+ "5.3.2": {
1000
+ "location_type": "opscode",
1001
+ "location_path": "https://supermarket.chef.io/api/v1",
1002
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.3.2/download",
1003
+ "dependencies": {
1004
+ "yum-mysql-community": ">= 0.0.0"
1005
+ }
1006
+ },
1007
+ "5.3.4": {
1008
+ "location_type": "opscode",
1009
+ "location_path": "https://supermarket.chef.io/api/v1",
1010
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.3.4/download",
1011
+ "dependencies": {
1012
+ "yum-mysql-community": ">= 0.0.0"
1013
+ }
1014
+ },
1015
+ "5.0.0": {
1016
+ "location_type": "opscode",
1017
+ "location_path": "https://supermarket.chef.io/api/v1",
1018
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.0.0/download",
1019
+ "dependencies": {
1020
+ }
1021
+ },
1022
+ "5.2.4": {
1023
+ "location_type": "opscode",
1024
+ "location_path": "https://supermarket.chef.io/api/v1",
1025
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.4/download",
1026
+ "dependencies": {
1027
+ }
1028
+ },
1029
+ "5.1.12": {
1030
+ "location_type": "opscode",
1031
+ "location_path": "https://supermarket.chef.io/api/v1",
1032
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.12/download",
1033
+ "dependencies": {
1034
+ }
1035
+ },
1036
+ "5.0.6": {
1037
+ "location_type": "opscode",
1038
+ "location_path": "https://supermarket.chef.io/api/v1",
1039
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.0.6/download",
1040
+ "dependencies": {
1041
+ }
1042
+ },
1043
+ "5.2.8": {
1044
+ "location_type": "opscode",
1045
+ "location_path": "https://supermarket.chef.io/api/v1",
1046
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.8/download",
1047
+ "dependencies": {
1048
+ }
1049
+ },
1050
+ "0.10.0": {
1051
+ "location_type": "opscode",
1052
+ "location_path": "https://supermarket.chef.io/api/v1",
1053
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/0.10.0/download",
1054
+ "dependencies": {
1055
+ }
1056
+ },
1057
+ "5.2.6": {
1058
+ "location_type": "opscode",
1059
+ "location_path": "https://supermarket.chef.io/api/v1",
1060
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.6/download",
1061
+ "dependencies": {
1062
+ }
1063
+ },
1064
+ "5.1.6": {
1065
+ "location_type": "opscode",
1066
+ "location_path": "https://supermarket.chef.io/api/v1",
1067
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.6/download",
1068
+ "dependencies": {
1069
+ }
1070
+ },
1071
+ "5.1.2": {
1072
+ "location_type": "opscode",
1073
+ "location_path": "https://supermarket.chef.io/api/v1",
1074
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.2/download",
1075
+ "dependencies": {
1076
+ }
1077
+ },
1078
+ "5.2.12": {
1079
+ "location_type": "opscode",
1080
+ "location_path": "https://supermarket.chef.io/api/v1",
1081
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.12/download",
1082
+ "dependencies": {
1083
+ }
1084
+ },
1085
+ "5.2.10": {
1086
+ "location_type": "opscode",
1087
+ "location_path": "https://supermarket.chef.io/api/v1",
1088
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.10/download",
1089
+ "dependencies": {
1090
+ }
1091
+ },
1092
+ "5.1.8": {
1093
+ "location_type": "opscode",
1094
+ "location_path": "https://supermarket.chef.io/api/v1",
1095
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.8/download",
1096
+ "dependencies": {
1097
+ }
1098
+ },
1099
+ "5.1.10": {
1100
+ "location_type": "opscode",
1101
+ "location_path": "https://supermarket.chef.io/api/v1",
1102
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.10/download",
1103
+ "dependencies": {
1104
+ }
1105
+ },
1106
+ "5.2.0": {
1107
+ "location_type": "opscode",
1108
+ "location_path": "https://supermarket.chef.io/api/v1",
1109
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.0/download",
1110
+ "dependencies": {
1111
+ }
1112
+ },
1113
+ "5.1.0": {
1114
+ "location_type": "opscode",
1115
+ "location_path": "https://supermarket.chef.io/api/v1",
1116
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.0/download",
1117
+ "dependencies": {
1118
+ }
1119
+ },
1120
+ "5.2.2": {
1121
+ "location_type": "opscode",
1122
+ "location_path": "https://supermarket.chef.io/api/v1",
1123
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.2.2/download",
1124
+ "dependencies": {
1125
+ }
1126
+ },
1127
+ "5.1.4": {
1128
+ "location_type": "opscode",
1129
+ "location_path": "https://supermarket.chef.io/api/v1",
1130
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.1.4/download",
1131
+ "dependencies": {
1132
+ }
1133
+ },
1134
+ "5.0.4": {
1135
+ "location_type": "opscode",
1136
+ "location_path": "https://supermarket.chef.io/api/v1",
1137
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.0.4/download",
1138
+ "dependencies": {
1139
+ }
1140
+ },
1141
+ "5.0.2": {
1142
+ "location_type": "opscode",
1143
+ "location_path": "https://supermarket.chef.io/api/v1",
1144
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/mysql/versions/5.0.2/download",
1145
+ "dependencies": {
1146
+ }
1147
+ }
1148
+ },
1149
+ "application": {
1150
+ "0.3.0": {
1151
+ "location_type": "opscode",
1152
+ "location_path": "https://supermarket.chef.io/api/v1",
1153
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.3.0/download",
1154
+ "dependencies": {
1155
+ "unicorn": ">= 0.0.0",
1156
+ "runit": ">= 0.0.0",
1157
+ "passenger_enterprise": ">= 0.0.0",
1158
+ "ruby_enterprise": ">= 0.0.0"
1159
+ }
1160
+ },
1161
+ "0.4.0": {
1162
+ "location_type": "opscode",
1163
+ "location_path": "https://supermarket.chef.io/api/v1",
1164
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.4.0/download",
1165
+ "dependencies": {
1166
+ "unicorn": ">= 0.0.0",
1167
+ "runit": ">= 0.0.0",
1168
+ "passenger_enterprise": ">= 0.0.0",
1169
+ "ruby_enterprise": ">= 0.0.0"
1170
+ }
1171
+ },
1172
+ "0.5.0": {
1173
+ "location_type": "opscode",
1174
+ "location_path": "https://supermarket.chef.io/api/v1",
1175
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.5.0/download",
1176
+ "dependencies": {
1177
+ "passenger_apache2": ">= 0.0.0",
1178
+ "unicorn": ">= 0.0.0",
1179
+ "runit": ">= 0.0.0",
1180
+ "passenger_enterprise": ">= 0.0.0",
1181
+ "ruby_enterprise": ">= 0.0.0",
1182
+ "apache2": ">= 0.0.0"
1183
+ }
1184
+ },
1185
+ "0.6.0": {
1186
+ "location_type": "opscode",
1187
+ "location_path": "https://supermarket.chef.io/api/v1",
1188
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.6.0/download",
1189
+ "dependencies": {
1190
+ "passenger_apache2": ">= 0.0.0",
1191
+ "runit": ">= 0.0.0",
1192
+ "unicorn": ">= 0.0.0",
1193
+ "passenger_enterprise": ">= 0.0.0",
1194
+ "apache2": ">= 0.0.0",
1195
+ "ruby_enterprise": ">= 0.0.0"
1196
+ }
1197
+ },
1198
+ "0.6.2": {
1199
+ "location_type": "opscode",
1200
+ "location_path": "https://supermarket.chef.io/api/v1",
1201
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.6.2/download",
1202
+ "dependencies": {
1203
+ "passenger_apache2": ">= 0.0.0",
1204
+ "runit": ">= 0.0.0",
1205
+ "unicorn": ">= 0.0.0",
1206
+ "passenger_enterprise": ">= 0.0.0",
1207
+ "apache2": ">= 0.0.0",
1208
+ "ruby_enterprise": ">= 0.0.0"
1209
+ }
1210
+ },
1211
+ "0.6.3": {
1212
+ "location_type": "opscode",
1213
+ "location_path": "https://supermarket.chef.io/api/v1",
1214
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.6.3/download",
1215
+ "dependencies": {
1216
+ "ruby_enterprise": ">= 0.0.0",
1217
+ "passenger_enterprise": ">= 0.0.0",
1218
+ "runit": ">= 0.0.0",
1219
+ "unicorn": ">= 0.0.0",
1220
+ "apache2": ">= 0.0.0",
1221
+ "passenger_apache2": ">= 0.0.0"
1222
+ }
1223
+ },
1224
+ "0.7.0": {
1225
+ "location_type": "opscode",
1226
+ "location_path": "https://supermarket.chef.io/api/v1",
1227
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.7.0/download",
1228
+ "dependencies": {
1229
+ "ruby_enterprise": ">= 0.0.0",
1230
+ "passenger_enterprise": ">= 0.0.0",
1231
+ "runit": ">= 0.0.0",
1232
+ "unicorn": ">= 0.0.0",
1233
+ "apache2": ">= 0.0.0",
1234
+ "passenger_apache2": ">= 0.0.0"
1235
+ }
1236
+ },
1237
+ "0.8.0": {
1238
+ "location_type": "opscode",
1239
+ "location_path": "https://supermarket.chef.io/api/v1",
1240
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.8.0/download",
1241
+ "dependencies": {
1242
+ "passenger_apache2": ">= 0.0.0",
1243
+ "runit": ">= 0.0.0",
1244
+ "unicorn": ">= 0.0.0",
1245
+ "passenger_enterprise": ">= 0.0.0",
1246
+ "apache2": ">= 0.0.0",
1247
+ "ruby_enterprise": ">= 0.0.0",
1248
+ "tomcat": ">= 0.0.0"
1249
+ }
1250
+ },
1251
+ "0.8.1": {
1252
+ "location_type": "opscode",
1253
+ "location_path": "https://supermarket.chef.io/api/v1",
1254
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.8.1/download",
1255
+ "dependencies": {
1256
+ "ruby_enterprise": ">= 0.0.0",
1257
+ "passenger_enterprise": ">= 0.0.0",
1258
+ "runit": ">= 0.0.0",
1259
+ "unicorn": ">= 0.0.0",
1260
+ "apache2": ">= 0.0.0",
1261
+ "passenger_apache2": ">= 0.0.0",
1262
+ "tomcat": ">= 0.0.0"
1263
+ }
1264
+ },
1265
+ "0.99.0": {
1266
+ "location_type": "opscode",
1267
+ "location_path": "https://supermarket.chef.io/api/v1",
1268
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.0/download",
1269
+ "dependencies": {
1270
+ "runit": ">= 0.0.0",
1271
+ "unicorn": ">= 0.0.0",
1272
+ "apache2": ">= 0.0.0",
1273
+ "passenger_apache2": ">= 0.0.0",
1274
+ "tomcat": ">= 0.0.0"
1275
+ }
1276
+ },
1277
+ "0.99.1": {
1278
+ "location_type": "opscode",
1279
+ "location_path": "https://supermarket.chef.io/api/v1",
1280
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.1/download",
1281
+ "dependencies": {
1282
+ "runit": ">= 0.0.0",
1283
+ "unicorn": ">= 0.0.0",
1284
+ "apache2": ">= 0.0.0",
1285
+ "passenger_apache2": ">= 0.0.0",
1286
+ "tomcat": ">= 0.0.0"
1287
+ }
1288
+ },
1289
+ "0.99.2": {
1290
+ "location_type": "opscode",
1291
+ "location_path": "https://supermarket.chef.io/api/v1",
1292
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.2/download",
1293
+ "dependencies": {
1294
+ "runit": ">= 0.0.0",
1295
+ "unicorn": ">= 0.0.0",
1296
+ "apache2": ">= 0.0.0",
1297
+ "passenger_apache2": ">= 0.0.0",
1298
+ "tomcat": ">= 0.0.0"
1299
+ }
1300
+ },
1301
+ "0.99.3": {
1302
+ "location_type": "opscode",
1303
+ "location_path": "https://supermarket.chef.io/api/v1",
1304
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.3/download",
1305
+ "dependencies": {
1306
+ "runit": ">= 0.0.0",
1307
+ "unicorn": ">= 0.0.0",
1308
+ "apache2": ">= 0.0.0",
1309
+ "passenger_apache2": ">= 0.0.0",
1310
+ "tomcat": ">= 0.0.0",
1311
+ "python": ">= 0.0.0",
1312
+ "gunicorn": ">= 0.0.0"
1313
+ }
1314
+ },
1315
+ "0.99.4": {
1316
+ "location_type": "opscode",
1317
+ "location_path": "https://supermarket.chef.io/api/v1",
1318
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.4/download",
1319
+ "dependencies": {
1320
+ "runit": ">= 0.0.0",
1321
+ "unicorn": ">= 0.0.0",
1322
+ "apache2": ">= 0.0.0",
1323
+ "passenger_apache2": ">= 0.0.0",
1324
+ "tomcat": ">= 0.0.0",
1325
+ "python": ">= 0.0.0",
1326
+ "gunicorn": ">= 0.0.0"
1327
+ }
1328
+ },
1329
+ "0.99.5": {
1330
+ "location_type": "opscode",
1331
+ "location_path": "https://supermarket.chef.io/api/v1",
1332
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.5/download",
1333
+ "dependencies": {
1334
+ "runit": ">= 0.0.0",
1335
+ "unicorn": ">= 0.0.0",
1336
+ "apache2": ">= 0.0.0",
1337
+ "passenger_apache2": ">= 0.0.0",
1338
+ "tomcat": ">= 0.0.0",
1339
+ "python": ">= 0.0.0",
1340
+ "gunicorn": ">= 0.0.0",
1341
+ "php": ">= 0.0.0"
1342
+ }
1343
+ },
1344
+ "0.99.6": {
1345
+ "location_type": "opscode",
1346
+ "location_path": "https://supermarket.chef.io/api/v1",
1347
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.6/download",
1348
+ "dependencies": {
1349
+ "runit": ">= 0.0.0",
1350
+ "unicorn": ">= 0.0.0",
1351
+ "apache2": ">= 0.0.0",
1352
+ "passenger_apache2": ">= 0.0.0",
1353
+ "tomcat": ">= 0.0.0",
1354
+ "python": ">= 0.0.0",
1355
+ "gunicorn": ">= 0.0.0",
1356
+ "php": ">= 0.0.0"
1357
+ }
1358
+ },
1359
+ "0.99.7": {
1360
+ "location_type": "opscode",
1361
+ "location_path": "https://supermarket.chef.io/api/v1",
1362
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.7/download",
1363
+ "dependencies": {
1364
+ "runit": ">= 0.0.0",
1365
+ "unicorn": ">= 0.0.0",
1366
+ "apache2": ">= 0.0.0",
1367
+ "passenger_apache2": ">= 0.0.0",
1368
+ "tomcat": ">= 0.0.0",
1369
+ "python": ">= 0.0.0",
1370
+ "gunicorn": ">= 0.0.0",
1371
+ "php": ">= 0.0.0"
1372
+ }
1373
+ },
1374
+ "0.99.8": {
1375
+ "location_type": "opscode",
1376
+ "location_path": "https://supermarket.chef.io/api/v1",
1377
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.8/download",
1378
+ "dependencies": {
1379
+ "runit": ">= 0.0.0",
1380
+ "unicorn": ">= 0.0.0",
1381
+ "apache2": ">= 0.0.0",
1382
+ "passenger_apache2": ">= 0.0.0",
1383
+ "tomcat": ">= 0.0.0",
1384
+ "python": ">= 0.0.0",
1385
+ "gunicorn": ">= 0.0.0",
1386
+ "php": ">= 0.0.0"
1387
+ }
1388
+ },
1389
+ "0.99.9": {
1390
+ "location_type": "opscode",
1391
+ "location_path": "https://supermarket.chef.io/api/v1",
1392
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.9/download",
1393
+ "dependencies": {
1394
+ "runit": ">= 0.0.0",
1395
+ "unicorn": ">= 0.0.0",
1396
+ "apache2": ">= 0.0.0",
1397
+ "passenger_apache2": ">= 0.0.0",
1398
+ "tomcat": ">= 0.0.0",
1399
+ "python": ">= 0.0.0",
1400
+ "gunicorn": ">= 0.0.0",
1401
+ "php": ">= 0.0.0"
1402
+ }
1403
+ },
1404
+ "0.99.10": {
1405
+ "location_type": "opscode",
1406
+ "location_path": "https://supermarket.chef.io/api/v1",
1407
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.10/download",
1408
+ "dependencies": {
1409
+ "runit": ">= 0.0.0",
1410
+ "unicorn": ">= 0.0.0",
1411
+ "apache2": ">= 0.0.0",
1412
+ "passenger_apache2": ">= 0.0.0",
1413
+ "tomcat": ">= 0.0.0",
1414
+ "python": ">= 0.0.0",
1415
+ "gunicorn": ">= 0.0.0",
1416
+ "php": ">= 0.0.0"
1417
+ }
1418
+ },
1419
+ "0.99.11": {
1420
+ "location_type": "opscode",
1421
+ "location_path": "https://supermarket.chef.io/api/v1",
1422
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.11/download",
1423
+ "dependencies": {
1424
+ "runit": ">= 0.0.0",
1425
+ "unicorn": ">= 0.0.0",
1426
+ "apache2": ">= 0.0.0",
1427
+ "passenger_apache2": ">= 0.0.0",
1428
+ "tomcat": ">= 0.0.0",
1429
+ "python": ">= 0.0.0",
1430
+ "gunicorn": ">= 0.0.0",
1431
+ "php": ">= 0.0.0"
1432
+ }
1433
+ },
1434
+ "0.99.12": {
1435
+ "location_type": "opscode",
1436
+ "location_path": "https://supermarket.chef.io/api/v1",
1437
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.12/download",
1438
+ "dependencies": {
1439
+ "runit": ">= 0.0.0",
1440
+ "unicorn": ">= 0.0.0",
1441
+ "apache2": ">= 0.0.0",
1442
+ "passenger_apache2": ">= 0.0.0",
1443
+ "tomcat": ">= 0.0.0",
1444
+ "python": ">= 0.0.0",
1445
+ "gunicorn": ">= 0.0.0",
1446
+ "php": ">= 0.0.0"
1447
+ }
1448
+ },
1449
+ "0.99.14": {
1450
+ "location_type": "opscode",
1451
+ "location_path": "https://supermarket.chef.io/api/v1",
1452
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/0.99.14/download",
1453
+ "dependencies": {
1454
+ "runit": ">= 0.0.0",
1455
+ "unicorn": ">= 0.0.0",
1456
+ "apache2": ">= 0.0.0",
1457
+ "passenger_apache2": ">= 0.0.0",
1458
+ "tomcat": ">= 0.0.0",
1459
+ "gunicorn": ">= 0.0.0",
1460
+ "php": ">= 0.0.0",
1461
+ "python": ">= 1.0.6"
1462
+ }
1463
+ },
1464
+ "1.0.0": {
1465
+ "location_type": "opscode",
1466
+ "location_path": "https://supermarket.chef.io/api/v1",
1467
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/1.0.0/download",
1468
+ "dependencies": {
1469
+ "runit": ">= 0.0.0",
1470
+ "unicorn": ">= 0.0.0",
1471
+ "apache2": ">= 0.0.0",
1472
+ "passenger_apache2": ">= 0.0.0",
1473
+ "tomcat": ">= 0.0.0",
1474
+ "python": ">= 1.0.6",
1475
+ "gunicorn": ">= 0.0.0",
1476
+ "php": ">= 0.0.0"
1477
+ }
1478
+ },
1479
+ "1.0.2": {
1480
+ "location_type": "opscode",
1481
+ "location_path": "https://supermarket.chef.io/api/v1",
1482
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/1.0.2/download",
1483
+ "dependencies": {
1484
+ "runit": ">= 0.0.0",
1485
+ "unicorn": ">= 0.0.0",
1486
+ "apache2": ">= 0.0.0",
1487
+ "passenger_apache2": ">= 0.0.0",
1488
+ "tomcat": ">= 0.0.0",
1489
+ "python": ">= 1.0.6",
1490
+ "gunicorn": ">= 0.0.0",
1491
+ "php": ">= 0.0.0"
1492
+ }
1493
+ },
1494
+ "1.0.4": {
1495
+ "location_type": "opscode",
1496
+ "location_path": "https://supermarket.chef.io/api/v1",
1497
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/1.0.4/download",
1498
+ "dependencies": {
1499
+ "runit": ">= 0.0.0",
1500
+ "unicorn": ">= 0.0.0",
1501
+ "apache2": ">= 0.0.0",
1502
+ "passenger_apache2": ">= 0.0.0",
1503
+ "tomcat": ">= 0.0.0",
1504
+ "python": ">= 1.0.6",
1505
+ "gunicorn": ">= 0.0.0",
1506
+ "php": ">= 0.0.0"
1507
+ }
1508
+ },
1509
+ "2.0.4": {
1510
+ "location_type": "opscode",
1511
+ "location_path": "https://supermarket.chef.io/api/v1",
1512
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/2.0.4/download",
1513
+ "dependencies": {
1514
+ }
1515
+ },
1516
+ "4.0.0": {
1517
+ "location_type": "opscode",
1518
+ "location_path": "https://supermarket.chef.io/api/v1",
1519
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/4.0.0/download",
1520
+ "dependencies": {
1521
+ }
1522
+ },
1523
+ "2.0.2": {
1524
+ "location_type": "opscode",
1525
+ "location_path": "https://supermarket.chef.io/api/v1",
1526
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/2.0.2/download",
1527
+ "dependencies": {
1528
+ }
1529
+ },
1530
+ "3.0.0": {
1531
+ "location_type": "opscode",
1532
+ "location_path": "https://supermarket.chef.io/api/v1",
1533
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/3.0.0/download",
1534
+ "dependencies": {
1535
+ }
1536
+ },
1537
+ "2.0.0": {
1538
+ "location_type": "opscode",
1539
+ "location_path": "https://supermarket.chef.io/api/v1",
1540
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/2.0.0/download",
1541
+ "dependencies": {
1542
+ }
1543
+ },
1544
+ "4.1.2": {
1545
+ "location_type": "opscode",
1546
+ "location_path": "https://supermarket.chef.io/api/v1",
1547
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/4.1.2/download",
1548
+ "dependencies": {
1549
+ }
1550
+ },
1551
+ "4.1.0": {
1552
+ "location_type": "opscode",
1553
+ "location_path": "https://supermarket.chef.io/api/v1",
1554
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/4.1.0/download",
1555
+ "dependencies": {
1556
+ }
1557
+ },
1558
+ "4.1.4": {
1559
+ "location_type": "opscode",
1560
+ "location_path": "https://supermarket.chef.io/api/v1",
1561
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/application/versions/4.1.4/download",
1562
+ "dependencies": {
1563
+ }
1564
+ }
1565
+ },
1566
+ "database": {
1567
+ "0.6.0": {
1568
+ "location_type": "opscode",
1569
+ "location_path": "https://supermarket.chef.io/api/v1",
1570
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/0.6.0/download",
1571
+ "dependencies": {
1572
+ "mysql": ">= 0.0.0",
1573
+ "xfs": ">= 0.0.0",
1574
+ "aws": ">= 0.0.0"
1575
+ }
1576
+ },
1577
+ "0.7.0": {
1578
+ "location_type": "opscode",
1579
+ "location_path": "https://supermarket.chef.io/api/v1",
1580
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/0.7.0/download",
1581
+ "dependencies": {
1582
+ "mysql": ">= 0.0.0",
1583
+ "aws": ">= 0.0.0",
1584
+ "xfs": ">= 0.0.0"
1585
+ }
1586
+ },
1587
+ "0.7.1": {
1588
+ "location_type": "opscode",
1589
+ "location_path": "https://supermarket.chef.io/api/v1",
1590
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/0.7.1/download",
1591
+ "dependencies": {
1592
+ "mysql": ">= 0.0.0",
1593
+ "aws": ">= 0.0.0",
1594
+ "xfs": ">= 0.0.0"
1595
+ }
1596
+ },
1597
+ "0.99.0": {
1598
+ "location_type": "opscode",
1599
+ "location_path": "https://supermarket.chef.io/api/v1",
1600
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/0.99.0/download",
1601
+ "dependencies": {
1602
+ "mysql": ">= 0.0.0",
1603
+ "aws": ">= 0.0.0",
1604
+ "xfs": ">= 0.0.0"
1605
+ }
1606
+ },
1607
+ "0.99.1": {
1608
+ "location_type": "opscode",
1609
+ "location_path": "https://supermarket.chef.io/api/v1",
1610
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/0.99.1/download",
1611
+ "dependencies": {
1612
+ "mysql": ">= 0.0.0",
1613
+ "aws": ">= 0.0.0",
1614
+ "xfs": ">= 0.0.0"
1615
+ }
1616
+ },
1617
+ "1.0.0": {
1618
+ "location_type": "opscode",
1619
+ "location_path": "https://supermarket.chef.io/api/v1",
1620
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.0.0/download",
1621
+ "dependencies": {
1622
+ "mysql": ">= 1.2.0",
1623
+ "aws": ">= 0.0.0",
1624
+ "xfs": ">= 0.0.0"
1625
+ }
1626
+ },
1627
+ "1.1.0": {
1628
+ "location_type": "opscode",
1629
+ "location_path": "https://supermarket.chef.io/api/v1",
1630
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.1.0/download",
1631
+ "dependencies": {
1632
+ "mysql": ">= 1.2.0",
1633
+ "postgresql": ">= 0.0.0",
1634
+ "aws": ">= 0.0.0",
1635
+ "xfs": ">= 0.0.0"
1636
+ }
1637
+ },
1638
+ "1.1.2": {
1639
+ "location_type": "opscode",
1640
+ "location_path": "https://supermarket.chef.io/api/v1",
1641
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.1.2/download",
1642
+ "dependencies": {
1643
+ "mysql": ">= 1.2.0",
1644
+ "postgresql": ">= 0.0.0",
1645
+ "aws": ">= 0.0.0",
1646
+ "xfs": ">= 0.0.0"
1647
+ }
1648
+ },
1649
+ "1.1.4": {
1650
+ "location_type": "opscode",
1651
+ "location_path": "https://supermarket.chef.io/api/v1",
1652
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.1.4/download",
1653
+ "dependencies": {
1654
+ "mysql": ">= 1.2.0",
1655
+ "postgresql": ">= 0.0.0",
1656
+ "aws": ">= 0.0.0",
1657
+ "xfs": ">= 0.0.0"
1658
+ }
1659
+ },
1660
+ "1.2.0": {
1661
+ "location_type": "opscode",
1662
+ "location_path": "https://supermarket.chef.io/api/v1",
1663
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.2.0/download",
1664
+ "dependencies": {
1665
+ "mysql": ">= 1.2.0",
1666
+ "postgresql": ">= 0.0.0",
1667
+ "aws": ">= 0.0.0",
1668
+ "xfs": ">= 0.0.0"
1669
+ }
1670
+ },
1671
+ "1.3.2": {
1672
+ "location_type": "opscode",
1673
+ "location_path": "https://supermarket.chef.io/api/v1",
1674
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.2/download",
1675
+ "dependencies": {
1676
+ "mysql": ">= 1.2.0",
1677
+ "postgresql": ">= 0.0.0",
1678
+ "aws": ">= 0.0.0",
1679
+ "xfs": ">= 0.0.0"
1680
+ }
1681
+ },
1682
+ "1.3.4": {
1683
+ "location_type": "opscode",
1684
+ "location_path": "https://supermarket.chef.io/api/v1",
1685
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.4/download",
1686
+ "dependencies": {
1687
+ "mysql": ">= 1.3.0",
1688
+ "postgresql": ">= 1.0.0",
1689
+ "aws": ">= 0.0.0",
1690
+ "xfs": ">= 0.0.0"
1691
+ }
1692
+ },
1693
+ "1.3.6": {
1694
+ "location_type": "opscode",
1695
+ "location_path": "https://supermarket.chef.io/api/v1",
1696
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.6/download",
1697
+ "dependencies": {
1698
+ "mysql": ">= 1.3.0",
1699
+ "postgresql": ">= 1.0.0",
1700
+ "aws": ">= 0.0.0",
1701
+ "xfs": ">= 0.0.0"
1702
+ }
1703
+ },
1704
+ "1.3.8": {
1705
+ "location_type": "opscode",
1706
+ "location_path": "https://supermarket.chef.io/api/v1",
1707
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.8/download",
1708
+ "dependencies": {
1709
+ "mysql": ">= 1.3.0",
1710
+ "postgresql": ">= 1.0.0",
1711
+ "aws": ">= 0.0.0",
1712
+ "xfs": ">= 0.0.0"
1713
+ }
1714
+ },
1715
+ "1.3.10": {
1716
+ "location_type": "opscode",
1717
+ "location_path": "https://supermarket.chef.io/api/v1",
1718
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.10/download",
1719
+ "dependencies": {
1720
+ "mysql": ">= 1.3.0",
1721
+ "postgresql": ">= 1.0.0",
1722
+ "aws": ">= 0.0.0",
1723
+ "xfs": ">= 0.0.0"
1724
+ }
1725
+ },
1726
+ "1.3.12": {
1727
+ "location_type": "opscode",
1728
+ "location_path": "https://supermarket.chef.io/api/v1",
1729
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.3.12/download",
1730
+ "dependencies": {
1731
+ "mysql": ">= 1.3.0",
1732
+ "postgresql": ">= 1.0.0",
1733
+ "aws": ">= 0.0.0",
1734
+ "xfs": ">= 0.0.0"
1735
+ }
1736
+ },
1737
+ "1.4.0": {
1738
+ "location_type": "opscode",
1739
+ "location_path": "https://supermarket.chef.io/api/v1",
1740
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.4.0/download",
1741
+ "dependencies": {
1742
+ "mysql": ">= 1.3.0",
1743
+ "postgresql": ">= 1.0.0",
1744
+ "aws": ">= 0.0.0",
1745
+ "xfs": ">= 0.0.0"
1746
+ }
1747
+ },
1748
+ "1.5.0": {
1749
+ "location_type": "opscode",
1750
+ "location_path": "https://supermarket.chef.io/api/v1",
1751
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.5.0/download",
1752
+ "dependencies": {
1753
+ "mysql": ">= 1.3.0",
1754
+ "postgresql": ">= 1.0.0",
1755
+ "aws": ">= 0.0.0",
1756
+ "xfs": ">= 0.0.0"
1757
+ }
1758
+ },
1759
+ "1.5.2": {
1760
+ "location_type": "opscode",
1761
+ "location_path": "https://supermarket.chef.io/api/v1",
1762
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.5.2/download",
1763
+ "dependencies": {
1764
+ "mysql": ">= 1.3.0",
1765
+ "postgresql": ">= 1.0.0",
1766
+ "aws": ">= 0.0.0",
1767
+ "xfs": ">= 0.0.0"
1768
+ }
1769
+ },
1770
+ "1.6.0": {
1771
+ "location_type": "opscode",
1772
+ "location_path": "https://supermarket.chef.io/api/v1",
1773
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/1.6.0/download",
1774
+ "dependencies": {
1775
+ "mysql": ">= 1.3.0",
1776
+ "postgresql": ">= 1.0.0",
1777
+ "aws": ">= 0.0.0",
1778
+ "xfs": ">= 0.0.0"
1779
+ }
1780
+ },
1781
+ "2.0.0": {
1782
+ "location_type": "opscode",
1783
+ "location_path": "https://supermarket.chef.io/api/v1",
1784
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.0.0/download",
1785
+ "dependencies": {
1786
+ "mysql": ">= 1.3.0",
1787
+ "postgresql": ">= 1.0.0",
1788
+ "aws": ">= 0.0.0",
1789
+ "xfs": ">= 0.0.0"
1790
+ }
1791
+ },
1792
+ "2.1.0": {
1793
+ "location_type": "opscode",
1794
+ "location_path": "https://supermarket.chef.io/api/v1",
1795
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.0/download",
1796
+ "dependencies": {
1797
+ "mysql": ">= 5.0.0",
1798
+ "postgresql": ">= 1.0.0",
1799
+ "aws": ">= 0.0.0",
1800
+ "xfs": ">= 0.0.0"
1801
+ }
1802
+ },
1803
+ "2.1.2": {
1804
+ "location_type": "opscode",
1805
+ "location_path": "https://supermarket.chef.io/api/v1",
1806
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.2/download",
1807
+ "dependencies": {
1808
+ "mysql": ">= 5.0.0",
1809
+ "postgresql": ">= 1.0.0",
1810
+ "aws": ">= 0.0.0",
1811
+ "xfs": ">= 0.0.0",
1812
+ "mysql-chef_gem": ">= 0.0.0"
1813
+ }
1814
+ },
1815
+ "2.1.4": {
1816
+ "location_type": "opscode",
1817
+ "location_path": "https://supermarket.chef.io/api/v1",
1818
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.4/download",
1819
+ "dependencies": {
1820
+ "mysql": ">= 5.0.0",
1821
+ "postgresql": ">= 1.0.0",
1822
+ "aws": ">= 0.0.0",
1823
+ "xfs": ">= 0.0.0",
1824
+ "mysql-chef_gem": ">= 0.0.0"
1825
+ }
1826
+ },
1827
+ "2.1.6": {
1828
+ "location_type": "opscode",
1829
+ "location_path": "https://supermarket.chef.io/api/v1",
1830
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.6/download",
1831
+ "dependencies": {
1832
+ "mysql": ">= 5.0.0",
1833
+ "postgresql": ">= 1.0.0",
1834
+ "aws": ">= 0.0.0",
1835
+ "xfs": ">= 0.0.0",
1836
+ "mysql-chef_gem": ">= 0.0.0"
1837
+ }
1838
+ },
1839
+ "2.1.8": {
1840
+ "location_type": "opscode",
1841
+ "location_path": "https://supermarket.chef.io/api/v1",
1842
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.8/download",
1843
+ "dependencies": {
1844
+ "mysql": ">= 5.0.0",
1845
+ "postgresql": ">= 1.0.0",
1846
+ "aws": ">= 0.0.0",
1847
+ "xfs": ">= 0.0.0",
1848
+ "mysql-chef_gem": ">= 0.0.0"
1849
+ }
1850
+ },
1851
+ "2.1.10": {
1852
+ "location_type": "opscode",
1853
+ "location_path": "https://supermarket.chef.io/api/v1",
1854
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.1.10/download",
1855
+ "dependencies": {
1856
+ "mysql": ">= 5.0.0",
1857
+ "postgresql": ">= 1.0.0",
1858
+ "aws": ">= 0.0.0",
1859
+ "xfs": ">= 0.0.0",
1860
+ "mysql-chef_gem": ">= 0.0.0"
1861
+ }
1862
+ },
1863
+ "2.2.0": {
1864
+ "location_type": "opscode",
1865
+ "location_path": "https://supermarket.chef.io/api/v1",
1866
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/database/versions/2.2.0/download",
1867
+ "dependencies": {
1868
+ "mysql": ">= 5.0.0",
1869
+ "postgresql": ">= 1.0.0",
1870
+ "aws": ">= 0.0.0",
1871
+ "xfs": ">= 0.0.0",
1872
+ "mysql-chef_gem": ">= 0.0.0"
1873
+ }
1874
+ }
1875
+ },
1876
+ "postgresql": {
1877
+ "0.99.0": {
1878
+ "location_type": "opscode",
1879
+ "location_path": "https://supermarket.chef.io/api/v1",
1880
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.99.0/download",
1881
+ "dependencies": {
1882
+ "openssl": ">= 0.0.0"
1883
+ }
1884
+ },
1885
+ "0.99.2": {
1886
+ "location_type": "opscode",
1887
+ "location_path": "https://supermarket.chef.io/api/v1",
1888
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.99.2/download",
1889
+ "dependencies": {
1890
+ "openssl": ">= 0.0.0"
1891
+ }
1892
+ },
1893
+ "0.99.4": {
1894
+ "location_type": "opscode",
1895
+ "location_path": "https://supermarket.chef.io/api/v1",
1896
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.99.4/download",
1897
+ "dependencies": {
1898
+ "openssl": ">= 0.0.0"
1899
+ }
1900
+ },
1901
+ "1.0.0": {
1902
+ "location_type": "opscode",
1903
+ "location_path": "https://supermarket.chef.io/api/v1",
1904
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/1.0.0/download",
1905
+ "dependencies": {
1906
+ "openssl": ">= 0.0.0"
1907
+ }
1908
+ },
1909
+ "2.0.0": {
1910
+ "location_type": "opscode",
1911
+ "location_path": "https://supermarket.chef.io/api/v1",
1912
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.0.0/download",
1913
+ "dependencies": {
1914
+ "openssl": ">= 0.0.0"
1915
+ }
1916
+ },
1917
+ "2.0.2": {
1918
+ "location_type": "opscode",
1919
+ "location_path": "https://supermarket.chef.io/api/v1",
1920
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.0.2/download",
1921
+ "dependencies": {
1922
+ "openssl": ">= 0.0.0"
1923
+ }
1924
+ },
1925
+ "2.1.0": {
1926
+ "location_type": "opscode",
1927
+ "location_path": "https://supermarket.chef.io/api/v1",
1928
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.1.0/download",
1929
+ "dependencies": {
1930
+ "openssl": ">= 0.0.0"
1931
+ }
1932
+ },
1933
+ "2.2.0": {
1934
+ "location_type": "opscode",
1935
+ "location_path": "https://supermarket.chef.io/api/v1",
1936
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.2.0/download",
1937
+ "dependencies": {
1938
+ "openssl": ">= 0.0.0"
1939
+ }
1940
+ },
1941
+ "2.2.2": {
1942
+ "location_type": "opscode",
1943
+ "location_path": "https://supermarket.chef.io/api/v1",
1944
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.2.2/download",
1945
+ "dependencies": {
1946
+ "openssl": ">= 0.0.0"
1947
+ }
1948
+ },
1949
+ "2.4.0": {
1950
+ "location_type": "opscode",
1951
+ "location_path": "https://supermarket.chef.io/api/v1",
1952
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/2.4.0/download",
1953
+ "dependencies": {
1954
+ "apt": ">= 0.0.0",
1955
+ "build-essential": ">= 0.0.0",
1956
+ "openssl": ">= 0.0.0"
1957
+ }
1958
+ },
1959
+ "3.0.0": {
1960
+ "location_type": "opscode",
1961
+ "location_path": "https://supermarket.chef.io/api/v1",
1962
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.0.0/download",
1963
+ "dependencies": {
1964
+ "apt": ">= 0.0.0",
1965
+ "build-essential": ">= 0.0.0",
1966
+ "openssl": ">= 0.0.0"
1967
+ }
1968
+ },
1969
+ "3.0.2": {
1970
+ "location_type": "opscode",
1971
+ "location_path": "https://supermarket.chef.io/api/v1",
1972
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.0.2/download",
1973
+ "dependencies": {
1974
+ "apt": ">= 0.0.0",
1975
+ "build-essential": ">= 0.0.0",
1976
+ "openssl": ">= 0.0.0"
1977
+ }
1978
+ },
1979
+ "3.0.4": {
1980
+ "location_type": "opscode",
1981
+ "location_path": "https://supermarket.chef.io/api/v1",
1982
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.0.4/download",
1983
+ "dependencies": {
1984
+ "apt": ">= 0.0.0",
1985
+ "build-essential": ">= 0.0.0",
1986
+ "openssl": ">= 0.0.0"
1987
+ }
1988
+ },
1989
+ "3.1.0": {
1990
+ "location_type": "opscode",
1991
+ "location_path": "https://supermarket.chef.io/api/v1",
1992
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.1.0/download",
1993
+ "dependencies": {
1994
+ "apt": ">= 0.0.0",
1995
+ "build-essential": ">= 0.0.0",
1996
+ "openssl": ">= 0.0.0"
1997
+ }
1998
+ },
1999
+ "3.2.0": {
2000
+ "location_type": "opscode",
2001
+ "location_path": "https://supermarket.chef.io/api/v1",
2002
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.2.0/download",
2003
+ "dependencies": {
2004
+ "apt": ">= 0.0.0",
2005
+ "build-essential": ">= 0.0.0",
2006
+ "openssl": ">= 0.0.0"
2007
+ }
2008
+ },
2009
+ "3.3.0": {
2010
+ "location_type": "opscode",
2011
+ "location_path": "https://supermarket.chef.io/api/v1",
2012
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.3.0/download",
2013
+ "dependencies": {
2014
+ "apt": ">= 0.0.0",
2015
+ "build-essential": ">= 0.0.0",
2016
+ "openssl": ">= 0.0.0"
2017
+ }
2018
+ },
2019
+ "3.3.4": {
2020
+ "location_type": "opscode",
2021
+ "location_path": "https://supermarket.chef.io/api/v1",
2022
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.3.4/download",
2023
+ "dependencies": {
2024
+ "apt": ">= 0.0.0",
2025
+ "build-essential": ">= 0.0.0",
2026
+ "openssl": ">= 0.0.0"
2027
+ }
2028
+ },
2029
+ "3.4.0": {
2030
+ "location_type": "opscode",
2031
+ "location_path": "https://supermarket.chef.io/api/v1",
2032
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.4.0/download",
2033
+ "dependencies": {
2034
+ "apt": ">= 1.9.0",
2035
+ "build-essential": ">= 0.0.0",
2036
+ "openssl": ">= 0.0.0"
2037
+ }
2038
+ },
2039
+ "3.4.1": {
2040
+ "location_type": "opscode",
2041
+ "location_path": "https://supermarket.chef.io/api/v1",
2042
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/3.4.1/download",
2043
+ "dependencies": {
2044
+ "apt": ">= 1.9.0",
2045
+ "build-essential": ">= 0.0.0",
2046
+ "openssl": ">= 0.0.0"
2047
+ }
2048
+ },
2049
+ "0.9.0": {
2050
+ "location_type": "opscode",
2051
+ "location_path": "https://supermarket.chef.io/api/v1",
2052
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.9.0/download",
2053
+ "dependencies": {
2054
+ }
2055
+ },
2056
+ "0.10.0": {
2057
+ "location_type": "opscode",
2058
+ "location_path": "https://supermarket.chef.io/api/v1",
2059
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.10.0/download",
2060
+ "dependencies": {
2061
+ }
2062
+ },
2063
+ "0.10.2": {
2064
+ "location_type": "opscode",
2065
+ "location_path": "https://supermarket.chef.io/api/v1",
2066
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.10.2/download",
2067
+ "dependencies": {
2068
+ }
2069
+ },
2070
+ "0.10.1": {
2071
+ "location_type": "opscode",
2072
+ "location_path": "https://supermarket.chef.io/api/v1",
2073
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.10.1/download",
2074
+ "dependencies": {
2075
+ }
2076
+ },
2077
+ "0.11.1": {
2078
+ "location_type": "opscode",
2079
+ "location_path": "https://supermarket.chef.io/api/v1",
2080
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.11.1/download",
2081
+ "dependencies": {
2082
+ }
2083
+ },
2084
+ "0.11.0": {
2085
+ "location_type": "opscode",
2086
+ "location_path": "https://supermarket.chef.io/api/v1",
2087
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.11.0/download",
2088
+ "dependencies": {
2089
+ }
2090
+ },
2091
+ "0.7.0": {
2092
+ "location_type": "opscode",
2093
+ "location_path": "https://supermarket.chef.io/api/v1",
2094
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/postgresql/versions/0.7.0/download",
2095
+ "dependencies": {
2096
+ }
2097
+ }
2098
+ },
2099
+ "apache2": {
2100
+ "1.9.0": {
2101
+ "location_type": "opscode",
2102
+ "location_path": "https://supermarket.chef.io/api/v1",
2103
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.9.0/download",
2104
+ "dependencies": {
2105
+ "iptables": ">= 0.0.0",
2106
+ "logrotate": ">= 0.0.0",
2107
+ "pacman": ">= 0.0.0"
2108
+ }
2109
+ },
2110
+ "1.9.1": {
2111
+ "location_type": "opscode",
2112
+ "location_path": "https://supermarket.chef.io/api/v1",
2113
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.9.1/download",
2114
+ "dependencies": {
2115
+ "iptables": ">= 0.0.0",
2116
+ "logrotate": ">= 0.0.0",
2117
+ "pacman": ">= 0.0.0"
2118
+ }
2119
+ },
2120
+ "1.9.4": {
2121
+ "location_type": "opscode",
2122
+ "location_path": "https://supermarket.chef.io/api/v1",
2123
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.9.4/download",
2124
+ "dependencies": {
2125
+ "iptables": ">= 0.0.0",
2126
+ "logrotate": ">= 0.0.0",
2127
+ "pacman": ">= 0.0.0"
2128
+ }
2129
+ },
2130
+ "1.9.6": {
2131
+ "location_type": "opscode",
2132
+ "location_path": "https://supermarket.chef.io/api/v1",
2133
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.9.6/download",
2134
+ "dependencies": {
2135
+ "iptables": ">= 0.0.0",
2136
+ "logrotate": ">= 0.0.0",
2137
+ "pacman": ">= 0.0.0"
2138
+ }
2139
+ },
2140
+ "1.10.0": {
2141
+ "location_type": "opscode",
2142
+ "location_path": "https://supermarket.chef.io/api/v1",
2143
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.10.0/download",
2144
+ "dependencies": {
2145
+ "iptables": ">= 0.0.0",
2146
+ "logrotate": ">= 0.0.0",
2147
+ "pacman": ">= 0.0.0"
2148
+ }
2149
+ },
2150
+ "1.10.2": {
2151
+ "location_type": "opscode",
2152
+ "location_path": "https://supermarket.chef.io/api/v1",
2153
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.10.2/download",
2154
+ "dependencies": {
2155
+ "iptables": ">= 0.0.0",
2156
+ "logrotate": ">= 0.0.0",
2157
+ "pacman": ">= 0.0.0"
2158
+ }
2159
+ },
2160
+ "1.10.4": {
2161
+ "location_type": "opscode",
2162
+ "location_path": "https://supermarket.chef.io/api/v1",
2163
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.10.4/download",
2164
+ "dependencies": {
2165
+ "iptables": ">= 0.0.0",
2166
+ "logrotate": ">= 0.0.0",
2167
+ "pacman": ">= 0.0.0"
2168
+ }
2169
+ },
2170
+ "0.99.3": {
2171
+ "location_type": "opscode",
2172
+ "location_path": "https://supermarket.chef.io/api/v1",
2173
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.99.3/download",
2174
+ "dependencies": {
2175
+ }
2176
+ },
2177
+ "1.1.16": {
2178
+ "location_type": "opscode",
2179
+ "location_path": "https://supermarket.chef.io/api/v1",
2180
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.16/download",
2181
+ "dependencies": {
2182
+ }
2183
+ },
2184
+ "1.1.12": {
2185
+ "location_type": "opscode",
2186
+ "location_path": "https://supermarket.chef.io/api/v1",
2187
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.12/download",
2188
+ "dependencies": {
2189
+ }
2190
+ },
2191
+ "0.12.2": {
2192
+ "location_type": "opscode",
2193
+ "location_path": "https://supermarket.chef.io/api/v1",
2194
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.12.2/download",
2195
+ "dependencies": {
2196
+ }
2197
+ },
2198
+ "1.8.12": {
2199
+ "location_type": "opscode",
2200
+ "location_path": "https://supermarket.chef.io/api/v1",
2201
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.12/download",
2202
+ "dependencies": {
2203
+ }
2204
+ },
2205
+ "1.8.10": {
2206
+ "location_type": "opscode",
2207
+ "location_path": "https://supermarket.chef.io/api/v1",
2208
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.10/download",
2209
+ "dependencies": {
2210
+ }
2211
+ },
2212
+ "1.8.8": {
2213
+ "location_type": "opscode",
2214
+ "location_path": "https://supermarket.chef.io/api/v1",
2215
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.8/download",
2216
+ "dependencies": {
2217
+ }
2218
+ },
2219
+ "1.8.0": {
2220
+ "location_type": "opscode",
2221
+ "location_path": "https://supermarket.chef.io/api/v1",
2222
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.0/download",
2223
+ "dependencies": {
2224
+ }
2225
+ },
2226
+ "1.0.2": {
2227
+ "location_type": "opscode",
2228
+ "location_path": "https://supermarket.chef.io/api/v1",
2229
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.0.2/download",
2230
+ "dependencies": {
2231
+ }
2232
+ },
2233
+ "0.11.0": {
2234
+ "location_type": "opscode",
2235
+ "location_path": "https://supermarket.chef.io/api/v1",
2236
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.11.0/download",
2237
+ "dependencies": {
2238
+ }
2239
+ },
2240
+ "0.99.1": {
2241
+ "location_type": "opscode",
2242
+ "location_path": "https://supermarket.chef.io/api/v1",
2243
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.99.1/download",
2244
+ "dependencies": {
2245
+ }
2246
+ },
2247
+ "0.12.3": {
2248
+ "location_type": "opscode",
2249
+ "location_path": "https://supermarket.chef.io/api/v1",
2250
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.12.3/download",
2251
+ "dependencies": {
2252
+ }
2253
+ },
2254
+ "1.4.2": {
2255
+ "location_type": "opscode",
2256
+ "location_path": "https://supermarket.chef.io/api/v1",
2257
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.4.2/download",
2258
+ "dependencies": {
2259
+ }
2260
+ },
2261
+ "1.3.2": {
2262
+ "location_type": "opscode",
2263
+ "location_path": "https://supermarket.chef.io/api/v1",
2264
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.3.2/download",
2265
+ "dependencies": {
2266
+ }
2267
+ },
2268
+ "1.0.8": {
2269
+ "location_type": "opscode",
2270
+ "location_path": "https://supermarket.chef.io/api/v1",
2271
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.0.8/download",
2272
+ "dependencies": {
2273
+ }
2274
+ },
2275
+ "0.10.0": {
2276
+ "location_type": "opscode",
2277
+ "location_path": "https://supermarket.chef.io/api/v1",
2278
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.10.0/download",
2279
+ "dependencies": {
2280
+ }
2281
+ },
2282
+ "0.99.4": {
2283
+ "location_type": "opscode",
2284
+ "location_path": "https://supermarket.chef.io/api/v1",
2285
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.99.4/download",
2286
+ "dependencies": {
2287
+ }
2288
+ },
2289
+ "1.0.0": {
2290
+ "location_type": "opscode",
2291
+ "location_path": "https://supermarket.chef.io/api/v1",
2292
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.0.0/download",
2293
+ "dependencies": {
2294
+ }
2295
+ },
2296
+ "1.8.4": {
2297
+ "location_type": "opscode",
2298
+ "location_path": "https://supermarket.chef.io/api/v1",
2299
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.4/download",
2300
+ "dependencies": {
2301
+ }
2302
+ },
2303
+ "0.12.1": {
2304
+ "location_type": "opscode",
2305
+ "location_path": "https://supermarket.chef.io/api/v1",
2306
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.12.1/download",
2307
+ "dependencies": {
2308
+ }
2309
+ },
2310
+ "1.1.0": {
2311
+ "location_type": "opscode",
2312
+ "location_path": "https://supermarket.chef.io/api/v1",
2313
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.0/download",
2314
+ "dependencies": {
2315
+ }
2316
+ },
2317
+ "1.6.2": {
2318
+ "location_type": "opscode",
2319
+ "location_path": "https://supermarket.chef.io/api/v1",
2320
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.6.2/download",
2321
+ "dependencies": {
2322
+ }
2323
+ },
2324
+ "1.6.6": {
2325
+ "location_type": "opscode",
2326
+ "location_path": "https://supermarket.chef.io/api/v1",
2327
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.6.6/download",
2328
+ "dependencies": {
2329
+ }
2330
+ },
2331
+ "1.0.4": {
2332
+ "location_type": "opscode",
2333
+ "location_path": "https://supermarket.chef.io/api/v1",
2334
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.0.4/download",
2335
+ "dependencies": {
2336
+ }
2337
+ },
2338
+ "0.12.0": {
2339
+ "location_type": "opscode",
2340
+ "location_path": "https://supermarket.chef.io/api/v1",
2341
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.12.0/download",
2342
+ "dependencies": {
2343
+ }
2344
+ },
2345
+ "0.9.1": {
2346
+ "location_type": "opscode",
2347
+ "location_path": "https://supermarket.chef.io/api/v1",
2348
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.9.1/download",
2349
+ "dependencies": {
2350
+ }
2351
+ },
2352
+ "1.3.0": {
2353
+ "location_type": "opscode",
2354
+ "location_path": "https://supermarket.chef.io/api/v1",
2355
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.3.0/download",
2356
+ "dependencies": {
2357
+ }
2358
+ },
2359
+ "1.6.0": {
2360
+ "location_type": "opscode",
2361
+ "location_path": "https://supermarket.chef.io/api/v1",
2362
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.6.0/download",
2363
+ "dependencies": {
2364
+ }
2365
+ },
2366
+ "1.1.8": {
2367
+ "location_type": "opscode",
2368
+ "location_path": "https://supermarket.chef.io/api/v1",
2369
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.8/download",
2370
+ "dependencies": {
2371
+ }
2372
+ },
2373
+ "0.10.1": {
2374
+ "location_type": "opscode",
2375
+ "location_path": "https://supermarket.chef.io/api/v1",
2376
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.10.1/download",
2377
+ "dependencies": {
2378
+ }
2379
+ },
2380
+ "1.1.2": {
2381
+ "location_type": "opscode",
2382
+ "location_path": "https://supermarket.chef.io/api/v1",
2383
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.2/download",
2384
+ "dependencies": {
2385
+ }
2386
+ },
2387
+ "1.5.0": {
2388
+ "location_type": "opscode",
2389
+ "location_path": "https://supermarket.chef.io/api/v1",
2390
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.5.0/download",
2391
+ "dependencies": {
2392
+ }
2393
+ },
2394
+ "1.8.2": {
2395
+ "location_type": "opscode",
2396
+ "location_path": "https://supermarket.chef.io/api/v1",
2397
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.2/download",
2398
+ "dependencies": {
2399
+ }
2400
+ },
2401
+ "1.8.6": {
2402
+ "location_type": "opscode",
2403
+ "location_path": "https://supermarket.chef.io/api/v1",
2404
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.6/download",
2405
+ "dependencies": {
2406
+ }
2407
+ },
2408
+ "1.1.6": {
2409
+ "location_type": "opscode",
2410
+ "location_path": "https://supermarket.chef.io/api/v1",
2411
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.6/download",
2412
+ "dependencies": {
2413
+ }
2414
+ },
2415
+ "1.8.14": {
2416
+ "location_type": "opscode",
2417
+ "location_path": "https://supermarket.chef.io/api/v1",
2418
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.8.14/download",
2419
+ "dependencies": {
2420
+ }
2421
+ },
2422
+ "0.99.0": {
2423
+ "location_type": "opscode",
2424
+ "location_path": "https://supermarket.chef.io/api/v1",
2425
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.99.0/download",
2426
+ "dependencies": {
2427
+ }
2428
+ },
2429
+ "1.1.4": {
2430
+ "location_type": "opscode",
2431
+ "location_path": "https://supermarket.chef.io/api/v1",
2432
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.4/download",
2433
+ "dependencies": {
2434
+ }
2435
+ },
2436
+ "1.0.6": {
2437
+ "location_type": "opscode",
2438
+ "location_path": "https://supermarket.chef.io/api/v1",
2439
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.0.6/download",
2440
+ "dependencies": {
2441
+ }
2442
+ },
2443
+ "0.99.2": {
2444
+ "location_type": "opscode",
2445
+ "location_path": "https://supermarket.chef.io/api/v1",
2446
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/0.99.2/download",
2447
+ "dependencies": {
2448
+ }
2449
+ },
2450
+ "1.4.0": {
2451
+ "location_type": "opscode",
2452
+ "location_path": "https://supermarket.chef.io/api/v1",
2453
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.4.0/download",
2454
+ "dependencies": {
2455
+ }
2456
+ },
2457
+ "1.2.0": {
2458
+ "location_type": "opscode",
2459
+ "location_path": "https://supermarket.chef.io/api/v1",
2460
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.2.0/download",
2461
+ "dependencies": {
2462
+ }
2463
+ },
2464
+ "1.1.10": {
2465
+ "location_type": "opscode",
2466
+ "location_path": "https://supermarket.chef.io/api/v1",
2467
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.1.10/download",
2468
+ "dependencies": {
2469
+ }
2470
+ },
2471
+ "1.7.0": {
2472
+ "location_type": "opscode",
2473
+ "location_path": "https://supermarket.chef.io/api/v1",
2474
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apache2/versions/1.7.0/download",
2475
+ "dependencies": {
2476
+ }
2477
+ }
2478
+ },
2479
+ "apt": {
2480
+ "1.6.0": {
2481
+ "location_type": "opscode",
2482
+ "location_path": "https://supermarket.chef.io/api/v1",
2483
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.6.0/download",
2484
+ "dependencies": {
2485
+ }
2486
+ },
2487
+ "1.2.2": {
2488
+ "location_type": "opscode",
2489
+ "location_path": "https://supermarket.chef.io/api/v1",
2490
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.2.2/download",
2491
+ "dependencies": {
2492
+ }
2493
+ },
2494
+ "0.9.3": {
2495
+ "location_type": "opscode",
2496
+ "location_path": "https://supermarket.chef.io/api/v1",
2497
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/0.9.3/download",
2498
+ "dependencies": {
2499
+ }
2500
+ },
2501
+ "0.9.0": {
2502
+ "location_type": "opscode",
2503
+ "location_path": "https://supermarket.chef.io/api/v1",
2504
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/0.9.0/download",
2505
+ "dependencies": {
2506
+ }
2507
+ },
2508
+ "1.10.0": {
2509
+ "location_type": "opscode",
2510
+ "location_path": "https://supermarket.chef.io/api/v1",
2511
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.10.0/download",
2512
+ "dependencies": {
2513
+ }
2514
+ },
2515
+ "2.1.1": {
2516
+ "location_type": "opscode",
2517
+ "location_path": "https://supermarket.chef.io/api/v1",
2518
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.1.1/download",
2519
+ "dependencies": {
2520
+ }
2521
+ },
2522
+ "1.5.0": {
2523
+ "location_type": "opscode",
2524
+ "location_path": "https://supermarket.chef.io/api/v1",
2525
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.5.0/download",
2526
+ "dependencies": {
2527
+ }
2528
+ },
2529
+ "1.8.2": {
2530
+ "location_type": "opscode",
2531
+ "location_path": "https://supermarket.chef.io/api/v1",
2532
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.8.2/download",
2533
+ "dependencies": {
2534
+ }
2535
+ },
2536
+ "2.1.2": {
2537
+ "location_type": "opscode",
2538
+ "location_path": "https://supermarket.chef.io/api/v1",
2539
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.1.2/download",
2540
+ "dependencies": {
2541
+ }
2542
+ },
2543
+ "1.4.6": {
2544
+ "location_type": "opscode",
2545
+ "location_path": "https://supermarket.chef.io/api/v1",
2546
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.4.6/download",
2547
+ "dependencies": {
2548
+ }
2549
+ },
2550
+ "1.4.2": {
2551
+ "location_type": "opscode",
2552
+ "location_path": "https://supermarket.chef.io/api/v1",
2553
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.4.2/download",
2554
+ "dependencies": {
2555
+ }
2556
+ },
2557
+ "2.2.0": {
2558
+ "location_type": "opscode",
2559
+ "location_path": "https://supermarket.chef.io/api/v1",
2560
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.2.0/download",
2561
+ "dependencies": {
2562
+ }
2563
+ },
2564
+ "1.1.2": {
2565
+ "location_type": "opscode",
2566
+ "location_path": "https://supermarket.chef.io/api/v1",
2567
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.1.2/download",
2568
+ "dependencies": {
2569
+ }
2570
+ },
2571
+ "2.4.0": {
2572
+ "location_type": "opscode",
2573
+ "location_path": "https://supermarket.chef.io/api/v1",
2574
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.4.0/download",
2575
+ "dependencies": {
2576
+ }
2577
+ },
2578
+ "1.3.0": {
2579
+ "location_type": "opscode",
2580
+ "location_path": "https://supermarket.chef.io/api/v1",
2581
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.3.0/download",
2582
+ "dependencies": {
2583
+ }
2584
+ },
2585
+ "2.3.10": {
2586
+ "location_type": "opscode",
2587
+ "location_path": "https://supermarket.chef.io/api/v1",
2588
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.3.10/download",
2589
+ "dependencies": {
2590
+ }
2591
+ },
2592
+ "2.0.0": {
2593
+ "location_type": "opscode",
2594
+ "location_path": "https://supermarket.chef.io/api/v1",
2595
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.0.0/download",
2596
+ "dependencies": {
2597
+ }
2598
+ },
2599
+ "1.8.0": {
2600
+ "location_type": "opscode",
2601
+ "location_path": "https://supermarket.chef.io/api/v1",
2602
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.8.0/download",
2603
+ "dependencies": {
2604
+ }
2605
+ },
2606
+ "1.4.4": {
2607
+ "location_type": "opscode",
2608
+ "location_path": "https://supermarket.chef.io/api/v1",
2609
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.4.4/download",
2610
+ "dependencies": {
2611
+ }
2612
+ },
2613
+ "2.3.6": {
2614
+ "location_type": "opscode",
2615
+ "location_path": "https://supermarket.chef.io/api/v1",
2616
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.3.6/download",
2617
+ "dependencies": {
2618
+ }
2619
+ },
2620
+ "2.2.1": {
2621
+ "location_type": "opscode",
2622
+ "location_path": "https://supermarket.chef.io/api/v1",
2623
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.2.1/download",
2624
+ "dependencies": {
2625
+ }
2626
+ },
2627
+ "1.3.2": {
2628
+ "location_type": "opscode",
2629
+ "location_path": "https://supermarket.chef.io/api/v1",
2630
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.3.2/download",
2631
+ "dependencies": {
2632
+ }
2633
+ },
2634
+ "1.8.4": {
2635
+ "location_type": "opscode",
2636
+ "location_path": "https://supermarket.chef.io/api/v1",
2637
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.8.4/download",
2638
+ "dependencies": {
2639
+ }
2640
+ },
2641
+ "1.4.0": {
2642
+ "location_type": "opscode",
2643
+ "location_path": "https://supermarket.chef.io/api/v1",
2644
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.4.0/download",
2645
+ "dependencies": {
2646
+ }
2647
+ },
2648
+ "2.3.4": {
2649
+ "location_type": "opscode",
2650
+ "location_path": "https://supermarket.chef.io/api/v1",
2651
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.3.4/download",
2652
+ "dependencies": {
2653
+ }
2654
+ },
2655
+ "2.3.0": {
2656
+ "location_type": "opscode",
2657
+ "location_path": "https://supermarket.chef.io/api/v1",
2658
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.3.0/download",
2659
+ "dependencies": {
2660
+ }
2661
+ },
2662
+ "1.7.0": {
2663
+ "location_type": "opscode",
2664
+ "location_path": "https://supermarket.chef.io/api/v1",
2665
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.7.0/download",
2666
+ "dependencies": {
2667
+ }
2668
+ },
2669
+ "2.3.8": {
2670
+ "location_type": "opscode",
2671
+ "location_path": "https://supermarket.chef.io/api/v1",
2672
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.3.8/download",
2673
+ "dependencies": {
2674
+ }
2675
+ },
2676
+ "0.9.2": {
2677
+ "location_type": "opscode",
2678
+ "location_path": "https://supermarket.chef.io/api/v1",
2679
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/0.9.2/download",
2680
+ "dependencies": {
2681
+ }
2682
+ },
2683
+ "1.1.1": {
2684
+ "location_type": "opscode",
2685
+ "location_path": "https://supermarket.chef.io/api/v1",
2686
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.1.1/download",
2687
+ "dependencies": {
2688
+ }
2689
+ },
2690
+ "1.0.0": {
2691
+ "location_type": "opscode",
2692
+ "location_path": "https://supermarket.chef.io/api/v1",
2693
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.0.0/download",
2694
+ "dependencies": {
2695
+ }
2696
+ },
2697
+ "0.8.0": {
2698
+ "location_type": "opscode",
2699
+ "location_path": "https://supermarket.chef.io/api/v1",
2700
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/0.8.0/download",
2701
+ "dependencies": {
2702
+ }
2703
+ },
2704
+ "2.1.0": {
2705
+ "location_type": "opscode",
2706
+ "location_path": "https://supermarket.chef.io/api/v1",
2707
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/2.1.0/download",
2708
+ "dependencies": {
2709
+ }
2710
+ },
2711
+ "1.2.0": {
2712
+ "location_type": "opscode",
2713
+ "location_path": "https://supermarket.chef.io/api/v1",
2714
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.2.0/download",
2715
+ "dependencies": {
2716
+ }
2717
+ },
2718
+ "1.9.0": {
2719
+ "location_type": "opscode",
2720
+ "location_path": "https://supermarket.chef.io/api/v1",
2721
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.9.0/download",
2722
+ "dependencies": {
2723
+ }
2724
+ },
2725
+ "1.9.2": {
2726
+ "location_type": "opscode",
2727
+ "location_path": "https://supermarket.chef.io/api/v1",
2728
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.9.2/download",
2729
+ "dependencies": {
2730
+ }
2731
+ },
2732
+ "1.1.0": {
2733
+ "location_type": "opscode",
2734
+ "location_path": "https://supermarket.chef.io/api/v1",
2735
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.1.0/download",
2736
+ "dependencies": {
2737
+ }
2738
+ },
2739
+ "1.4.8": {
2740
+ "location_type": "opscode",
2741
+ "location_path": "https://supermarket.chef.io/api/v1",
2742
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/apt/versions/1.4.8/download",
2743
+ "dependencies": {
2744
+ }
2745
+ }
2746
+ },
2747
+ "yum": {
2748
+ "3.1.2": {
2749
+ "location_type": "opscode",
2750
+ "location_path": "https://supermarket.chef.io/api/v1",
2751
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.1.2/download",
2752
+ "dependencies": {
2753
+ }
2754
+ },
2755
+ "2.3.4": {
2756
+ "location_type": "opscode",
2757
+ "location_path": "https://supermarket.chef.io/api/v1",
2758
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.3.4/download",
2759
+ "dependencies": {
2760
+ }
2761
+ },
2762
+ "0.6.2": {
2763
+ "location_type": "opscode",
2764
+ "location_path": "https://supermarket.chef.io/api/v1",
2765
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.6.2/download",
2766
+ "dependencies": {
2767
+ }
2768
+ },
2769
+ "3.2.0": {
2770
+ "location_type": "opscode",
2771
+ "location_path": "https://supermarket.chef.io/api/v1",
2772
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.2.0/download",
2773
+ "dependencies": {
2774
+ }
2775
+ },
2776
+ "2.2.0": {
2777
+ "location_type": "opscode",
2778
+ "location_path": "https://supermarket.chef.io/api/v1",
2779
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.2.0/download",
2780
+ "dependencies": {
2781
+ }
2782
+ },
2783
+ "2.4.4": {
2784
+ "location_type": "opscode",
2785
+ "location_path": "https://supermarket.chef.io/api/v1",
2786
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.4.4/download",
2787
+ "dependencies": {
2788
+ }
2789
+ },
2790
+ "2.4.0": {
2791
+ "location_type": "opscode",
2792
+ "location_path": "https://supermarket.chef.io/api/v1",
2793
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.4.0/download",
2794
+ "dependencies": {
2795
+ }
2796
+ },
2797
+ "3.1.6": {
2798
+ "location_type": "opscode",
2799
+ "location_path": "https://supermarket.chef.io/api/v1",
2800
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.1.6/download",
2801
+ "dependencies": {
2802
+ }
2803
+ },
2804
+ "2.3.0": {
2805
+ "location_type": "opscode",
2806
+ "location_path": "https://supermarket.chef.io/api/v1",
2807
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.3.0/download",
2808
+ "dependencies": {
2809
+ }
2810
+ },
2811
+ "2.2.2": {
2812
+ "location_type": "opscode",
2813
+ "location_path": "https://supermarket.chef.io/api/v1",
2814
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.2.2/download",
2815
+ "dependencies": {
2816
+ }
2817
+ },
2818
+ "0.5.2": {
2819
+ "location_type": "opscode",
2820
+ "location_path": "https://supermarket.chef.io/api/v1",
2821
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.5.2/download",
2822
+ "dependencies": {
2823
+ }
2824
+ },
2825
+ "0.1.1": {
2826
+ "location_type": "opscode",
2827
+ "location_path": "https://supermarket.chef.io/api/v1",
2828
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.1.1/download",
2829
+ "dependencies": {
2830
+ }
2831
+ },
2832
+ "0.5.0": {
2833
+ "location_type": "opscode",
2834
+ "location_path": "https://supermarket.chef.io/api/v1",
2835
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.5.0/download",
2836
+ "dependencies": {
2837
+ }
2838
+ },
2839
+ "0.6.0": {
2840
+ "location_type": "opscode",
2841
+ "location_path": "https://supermarket.chef.io/api/v1",
2842
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.6.0/download",
2843
+ "dependencies": {
2844
+ }
2845
+ },
2846
+ "0.8.0": {
2847
+ "location_type": "opscode",
2848
+ "location_path": "https://supermarket.chef.io/api/v1",
2849
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.8.0/download",
2850
+ "dependencies": {
2851
+ }
2852
+ },
2853
+ "3.0.0": {
2854
+ "location_type": "opscode",
2855
+ "location_path": "https://supermarket.chef.io/api/v1",
2856
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.0.0/download",
2857
+ "dependencies": {
2858
+ }
2859
+ },
2860
+ "2.3.2": {
2861
+ "location_type": "opscode",
2862
+ "location_path": "https://supermarket.chef.io/api/v1",
2863
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.3.2/download",
2864
+ "dependencies": {
2865
+ }
2866
+ },
2867
+ "0.1.0": {
2868
+ "location_type": "opscode",
2869
+ "location_path": "https://supermarket.chef.io/api/v1",
2870
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.1.0/download",
2871
+ "dependencies": {
2872
+ }
2873
+ },
2874
+ "2.0.0": {
2875
+ "location_type": "opscode",
2876
+ "location_path": "https://supermarket.chef.io/api/v1",
2877
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.0.0/download",
2878
+ "dependencies": {
2879
+ }
2880
+ },
2881
+ "3.0.6": {
2882
+ "location_type": "opscode",
2883
+ "location_path": "https://supermarket.chef.io/api/v1",
2884
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.0.6/download",
2885
+ "dependencies": {
2886
+ }
2887
+ },
2888
+ "2.0.2": {
2889
+ "location_type": "opscode",
2890
+ "location_path": "https://supermarket.chef.io/api/v1",
2891
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.0.2/download",
2892
+ "dependencies": {
2893
+ }
2894
+ },
2895
+ "0.1.2": {
2896
+ "location_type": "opscode",
2897
+ "location_path": "https://supermarket.chef.io/api/v1",
2898
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.1.2/download",
2899
+ "dependencies": {
2900
+ }
2901
+ },
2902
+ "2.1.0": {
2903
+ "location_type": "opscode",
2904
+ "location_path": "https://supermarket.chef.io/api/v1",
2905
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.1.0/download",
2906
+ "dependencies": {
2907
+ }
2908
+ },
2909
+ "3.0.2": {
2910
+ "location_type": "opscode",
2911
+ "location_path": "https://supermarket.chef.io/api/v1",
2912
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.0.2/download",
2913
+ "dependencies": {
2914
+ }
2915
+ },
2916
+ "2.0.6": {
2917
+ "location_type": "opscode",
2918
+ "location_path": "https://supermarket.chef.io/api/v1",
2919
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.0.6/download",
2920
+ "dependencies": {
2921
+ }
2922
+ },
2923
+ "1.0.0": {
2924
+ "location_type": "opscode",
2925
+ "location_path": "https://supermarket.chef.io/api/v1",
2926
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/1.0.0/download",
2927
+ "dependencies": {
2928
+ }
2929
+ },
2930
+ "3.0.4": {
2931
+ "location_type": "opscode",
2932
+ "location_path": "https://supermarket.chef.io/api/v1",
2933
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.0.4/download",
2934
+ "dependencies": {
2935
+ }
2936
+ },
2937
+ "2.4.2": {
2938
+ "location_type": "opscode",
2939
+ "location_path": "https://supermarket.chef.io/api/v1",
2940
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.4.2/download",
2941
+ "dependencies": {
2942
+ }
2943
+ },
2944
+ "3.1.4": {
2945
+ "location_type": "opscode",
2946
+ "location_path": "https://supermarket.chef.io/api/v1",
2947
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.1.4/download",
2948
+ "dependencies": {
2949
+ }
2950
+ },
2951
+ "3.1.0": {
2952
+ "location_type": "opscode",
2953
+ "location_path": "https://supermarket.chef.io/api/v1",
2954
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.1.0/download",
2955
+ "dependencies": {
2956
+ }
2957
+ },
2958
+ "2.0.4": {
2959
+ "location_type": "opscode",
2960
+ "location_path": "https://supermarket.chef.io/api/v1",
2961
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.0.4/download",
2962
+ "dependencies": {
2963
+ }
2964
+ },
2965
+ "0.8.2": {
2966
+ "location_type": "opscode",
2967
+ "location_path": "https://supermarket.chef.io/api/v1",
2968
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/0.8.2/download",
2969
+ "dependencies": {
2970
+ }
2971
+ },
2972
+ "3.2.2": {
2973
+ "location_type": "opscode",
2974
+ "location_path": "https://supermarket.chef.io/api/v1",
2975
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/3.2.2/download",
2976
+ "dependencies": {
2977
+ }
2978
+ },
2979
+ "2.2.4": {
2980
+ "location_type": "opscode",
2981
+ "location_path": "https://supermarket.chef.io/api/v1",
2982
+ "download_url": "https://supermarket.chef.io/api/v1/cookbooks/yum/versions/2.2.4/download",
2983
+ "dependencies": {
2984
+ }
2985
+ }
2986
+ }
2987
+ }