chef-dk 0.3.5 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +4 -4
  3. data/README.md +4 -4
  4. data/lib/chef-dk/builtin_commands.rb +4 -0
  5. data/lib/chef-dk/chef_runner.rb +7 -1
  6. data/lib/chef-dk/command/exec.rb +9 -0
  7. data/lib/chef-dk/command/export.rb +132 -0
  8. data/lib/chef-dk/command/generator_commands.rb +1 -1
  9. data/lib/chef-dk/command/generator_commands/app.rb +8 -0
  10. data/lib/chef-dk/command/generator_commands/base.rb +46 -4
  11. data/lib/chef-dk/command/generator_commands/cookbook.rb +8 -0
  12. data/lib/chef-dk/command/generator_commands/cookbook_code_file.rb +1 -0
  13. data/lib/chef-dk/command/push.rb +3 -6
  14. data/lib/chef-dk/command/shell_init.rb +28 -5
  15. data/lib/chef-dk/command/update.rb +106 -0
  16. data/lib/chef-dk/command/verify.rb +72 -0
  17. data/lib/chef-dk/component_test.rb +12 -1
  18. data/lib/chef-dk/configurable.rb +52 -0
  19. data/lib/chef-dk/cookbook_metadata.rb +10 -1
  20. data/lib/chef-dk/cookbook_profiler/git.rb +1 -1
  21. data/lib/chef-dk/exceptions.rb +17 -2
  22. data/lib/chef-dk/helpers.rb +2 -2
  23. data/lib/chef-dk/policyfile/community_cookbook_source.rb +1 -1
  24. data/lib/chef-dk/policyfile/dsl.rb +7 -0
  25. data/lib/chef-dk/policyfile/uploader.rb +25 -4
  26. data/lib/chef-dk/policyfile_compiler.rb +21 -1
  27. data/lib/chef-dk/policyfile_lock.rb +5 -0
  28. data/lib/chef-dk/policyfile_services/export_repo.rb +194 -0
  29. data/lib/chef-dk/policyfile_services/install.rb +8 -2
  30. data/lib/chef-dk/policyfile_services/push.rb +4 -1
  31. data/lib/chef-dk/service_exceptions.rb +6 -0
  32. data/lib/chef-dk/skeletons/code_generator/files/default/Berksfile +1 -1
  33. data/lib/chef-dk/skeletons/code_generator/files/default/repo/README.md +1 -1
  34. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/README.md +1 -1
  35. data/lib/chef-dk/skeletons/code_generator/files/default/repo/environments/README.md +2 -2
  36. data/lib/chef-dk/skeletons/code_generator/files/default/serverspec_spec_helper.rb +3 -0
  37. data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper.rb +1 -7
  38. data/lib/chef-dk/skeletons/code_generator/metadata.rb +1 -1
  39. data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +31 -1
  40. data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +32 -2
  41. data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +18 -0
  42. data/lib/chef-dk/skeletons/code_generator/templates/default/recipe.rb.erb +5 -0
  43. data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +23 -0
  44. data/lib/chef-dk/skeletons/code_generator/templates/default/serverspec_default_spec.rb.erb +12 -0
  45. data/lib/chef-dk/version.rb +1 -1
  46. data/lib/kitchen/provisioner/policyfile_zero.rb +149 -0
  47. data/spec/shared/a_file_generator.rb +1 -0
  48. data/spec/shared/command_with_ui_object.rb +11 -0
  49. data/spec/shared/custom_generator_cookbook.rb +117 -0
  50. data/spec/unit/chef_runner_spec.rb +26 -0
  51. data/spec/unit/command/exec_spec.rb +46 -5
  52. data/spec/unit/command/export_spec.rb +176 -0
  53. data/spec/unit/command/generator_commands/app_spec.rb +38 -0
  54. data/spec/unit/command/generator_commands/cookbook_spec.rb +37 -28
  55. data/spec/unit/command/generator_commands/recipe_spec.rb +4 -2
  56. data/spec/unit/command/install_spec.rb +3 -6
  57. data/spec/unit/command/push_spec.rb +3 -6
  58. data/spec/unit/command/shell_init_spec.rb +77 -49
  59. data/spec/unit/command/update_spec.rb +155 -0
  60. data/spec/unit/command/verify_spec.rb +22 -7
  61. data/spec/unit/cookbook_metadata_spec.rb +44 -8
  62. data/spec/unit/cookbook_profiler/git_spec.rb +12 -0
  63. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/Berksfile +1 -1
  64. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/Berksfile +1 -1
  65. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/Berksfile +1 -1
  66. data/spec/unit/fixtures/cookbooks_api/small_universe.json +667 -667
  67. data/spec/unit/fixtures/cookbooks_api/universe.json +1 -1
  68. data/spec/unit/fixtures/cookbooks_api/update_fixtures.rb +1 -1
  69. data/spec/unit/fixtures/example_cookbook/Berksfile +1 -1
  70. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore +17 -0
  71. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml +16 -0
  72. data/spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile +3 -0
  73. data/spec/unit/fixtures/example_cookbook_metadata_json_only/README.md +4 -0
  74. data/spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore +96 -0
  75. data/spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json +5 -0
  76. data/spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb +8 -0
  77. data/spec/unit/fixtures/example_cookbook_no_metadata/.gitignore +17 -0
  78. data/spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml +16 -0
  79. data/spec/unit/fixtures/example_cookbook_no_metadata/Berksfile +3 -0
  80. data/spec/unit/fixtures/example_cookbook_no_metadata/README.md +4 -0
  81. data/spec/unit/fixtures/example_cookbook_no_metadata/chefignore +96 -0
  82. data/spec/unit/fixtures/example_cookbook_no_metadata/recipes/default.rb +8 -0
  83. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/Berksfile +1 -1
  84. data/spec/unit/policyfile/community_cookbook_source_spec.rb +2 -2
  85. data/spec/unit/policyfile/cookbook_location_specification_spec.rb +3 -3
  86. data/spec/unit/policyfile/uploader_spec.rb +61 -25
  87. data/spec/unit/policyfile_demands_spec.rb +47 -0
  88. data/spec/unit/policyfile_evaluation_spec.rb +1 -1
  89. data/spec/unit/policyfile_lock_build_spec.rb +60 -3
  90. data/spec/unit/policyfile_services/export_repo_spec.rb +321 -0
  91. data/spec/unit/policyfile_services/install_spec.rb +20 -1
  92. data/spec/unit/policyfile_services/push_spec.rb +36 -9
  93. metadata +53 -38
  94. data/lib/chef-dk/skeletons/code_generator/files/default/converge_spec.rb +0 -9
  95. data/lib/chef-dk/skeletons/code_generator/templates/default/default_recipe.rb.erb +0 -5
@@ -0,0 +1,155 @@
1
+ #
2
+ # Copyright:: Copyright (c) 2014 Chef Software Inc.
3
+ # License:: Apache License, Version 2.0
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+
18
+ require 'spec_helper'
19
+ require 'shared/command_with_ui_object'
20
+ require 'chef-dk/command/update'
21
+
22
+ describe ChefDK::Command::Update do
23
+
24
+ it_behaves_like "a command with a UI object"
25
+
26
+ let(:params) { [] }
27
+
28
+ let(:command) do
29
+ c = described_class.new
30
+ c.apply_params!(params)
31
+ c
32
+ end
33
+
34
+ let(:install_service) { instance_double(ChefDK::PolicyfileServices::Install) }
35
+
36
+ it "disables debug by default" do
37
+ expect(command.debug?).to be(false)
38
+ end
39
+
40
+ context "when debug mode is set" do
41
+
42
+ let(:params) { [ "-D" ] }
43
+
44
+ it "enables debug" do
45
+ expect(command.debug?).to be(true)
46
+ end
47
+ end
48
+
49
+ context "with no arguments" do
50
+
51
+ it "does not specify a policyfile relative path" do
52
+ expect(command.policyfile_relative_path).to be(nil)
53
+ end
54
+
55
+ it "creates the installer service with a `nil` policyfile path" do
56
+ expect(ChefDK::PolicyfileServices::Install).to receive(:new).
57
+ with(policyfile: nil, ui: command.ui, root_dir: Dir.pwd, overwrite: true).
58
+ and_return(install_service)
59
+ expect(command.installer).to eq(install_service)
60
+ end
61
+
62
+ end
63
+
64
+ context "with an explicit policyfile relative path" do
65
+
66
+ let(:params) { [ "MyPolicy.rb" ] }
67
+
68
+ it "respects the user-supplied path" do
69
+ expect(command.policyfile_relative_path).to eq("MyPolicy.rb")
70
+ end
71
+
72
+ it "creates the installer service with the specified policyfile path" do
73
+ expect(ChefDK::PolicyfileServices::Install).to receive(:new).
74
+ with(policyfile: "MyPolicy.rb", ui: command.ui, root_dir: Dir.pwd, overwrite: true).
75
+ and_return(install_service)
76
+ expect(command.installer).to eq(install_service)
77
+ end
78
+
79
+ end
80
+
81
+ describe "running the install" do
82
+
83
+ let(:ui) { TestHelpers::TestUI.new }
84
+
85
+ before do
86
+ command.ui = ui
87
+ allow(command).to receive(:installer).and_return(install_service)
88
+ end
89
+
90
+ context "when the command is successful" do
91
+ before do
92
+ expect(install_service).to receive(:run)
93
+ end
94
+
95
+ it "returns 0" do
96
+ expect(command.run).to eq(0)
97
+ end
98
+ end
99
+
100
+ context "when the command is unsuccessful" do
101
+
102
+ let(:backtrace) { caller[0...3] }
103
+
104
+ let(:cause) do
105
+ e = StandardError.new("some operation failed")
106
+ e.set_backtrace(backtrace)
107
+ e
108
+ end
109
+
110
+ let(:exception) do
111
+ ChefDK::PolicyfileInstallError.new("install failed", cause)
112
+ end
113
+
114
+ before do
115
+ expect(install_service).to receive(:run).and_raise(exception)
116
+ end
117
+
118
+ it "returns 1" do
119
+ expect(command.run).to eq(1)
120
+ end
121
+
122
+ it "displays the exception and cause" do
123
+ expected_error_text=<<-E
124
+ Error: install failed
125
+ Reason: (StandardError) some operation failed
126
+
127
+ E
128
+
129
+ command.run
130
+ expect(ui.output).to eq(expected_error_text)
131
+ end
132
+
133
+ context "and debug is enabled" do
134
+
135
+ let(:params) { ["-D"] }
136
+
137
+ it "displays the exception and cause with backtrace" do
138
+ expected_error_text=<<-E
139
+ Error: install failed
140
+ Reason: (StandardError) some operation failed
141
+
142
+
143
+ E
144
+
145
+ expected_error_text << backtrace.join("\n") << "\n"
146
+
147
+ command.run
148
+ expect(ui.output).to eq(expected_error_text)
149
+ end
150
+ end
151
+
152
+ end
153
+
154
+ end
155
+ end
@@ -34,13 +34,28 @@ describe ChefDK::Command::Verify do
34
34
 
35
35
  let(:components) { {} }
36
36
 
37
+ let(:default_components) do
38
+ [
39
+ "berkshelf",
40
+ "test-kitchen",
41
+ "chef-client",
42
+ "chef-dk",
43
+ "chefspec",
44
+ "rubocop",
45
+ "fauxhai",
46
+ "knife-spork",
47
+ "kitchen-vagrant",
48
+ "package installation"
49
+ ]
50
+ end
51
+
37
52
  def run_command(expected_exit_code)
38
53
  expect(command_instance.run(command_options)).to eq(expected_exit_code)
39
54
  end
40
55
 
41
56
  it "defines berks, tk, chef and chef-dk components by default" do
42
57
  expect(command_instance.components).not_to be_empty
43
- expect(command_instance.components.map(&:name)).to match_array(%w{berkshelf test-kitchen chef-client chef-dk chefspec})
58
+ expect(command_instance.components.map(&:name)).to match_array(default_components)
44
59
  end
45
60
 
46
61
  it "has a usage banner" do
@@ -88,7 +103,7 @@ describe ChefDK::Command::Verify do
88
103
  c.base_dir = "berkshelf"
89
104
  c.unit_test(&run_unit_test)
90
105
  c.integration_test(&run_integration_test)
91
- c.smoke_test { sh("true") }
106
+ c.smoke_test { sh("exit 0") }
92
107
  end
93
108
  end
94
109
 
@@ -96,7 +111,7 @@ describe ChefDK::Command::Verify do
96
111
  ChefDK::ComponentTest.new("successful_comp_2").tap do |c|
97
112
  c.base_dir = "test-kitchen"
98
113
  c.unit_test(&run_unit_test)
99
- c.smoke_test { sh("true") }
114
+ c.smoke_test { sh("exit 0") }
100
115
  end
101
116
  end
102
117
 
@@ -104,19 +119,19 @@ describe ChefDK::Command::Verify do
104
119
  ChefDK::ComponentTest.new("failing_comp").tap do |c|
105
120
  c.base_dir = "chef"
106
121
  c.unit_test(&run_unit_test)
107
- c.smoke_test { sh("true") }
122
+ c.smoke_test { sh("exit 0") }
108
123
  end
109
124
  end
110
125
 
111
126
  let(:passing_smoke_test_only) do
112
127
  component = failing_unit_test.dup
113
- component.smoke_test { sh("true") }
128
+ component.smoke_test { sh("exit 0") }
114
129
  component
115
130
  end
116
131
 
117
132
  let(:failing_smoke_test_only) do
118
133
  component = all_tests_ok.dup
119
- component.smoke_test { sh("false") }
134
+ component.smoke_test { sh("exit 1") }
120
135
  component
121
136
  end
122
137
 
@@ -124,7 +139,7 @@ describe ChefDK::Command::Verify do
124
139
  ChefDK::ComponentTest.new("successful_comp").tap do |c|
125
140
  c.base_dir = "berkshelf"
126
141
  c.unit_test { sh("./verify_me") }
127
- c.smoke_test { sh("true") }
142
+ c.smoke_test { sh("exit 0") }
128
143
  end
129
144
  end
130
145
 
@@ -40,21 +40,57 @@ describe ChefDK::CookbookMetadata do
40
40
 
41
41
  describe "when a cookbook is loaded" do
42
42
 
43
- let(:cookbook_root) { File.join(fixtures_path, 'example_cookbook') }
44
43
 
45
44
  let(:cookbook) { described_class.from_path(cookbook_root) }
46
45
 
47
- it "has a name" do
48
- expect(cookbook.name).to eq("example_cookbook")
49
- expect(cookbook.cookbook_name).to eq("example_cookbook")
46
+ context "and the cookbook has only a metadata.rb" do
47
+
48
+ let(:cookbook_root) { File.join(fixtures_path, 'example_cookbook') }
49
+
50
+ it "has a name" do
51
+ expect(cookbook.name).to eq("example_cookbook")
52
+ expect(cookbook.cookbook_name).to eq("example_cookbook")
53
+ end
54
+
55
+ it "has a version" do
56
+ expect(cookbook.version).to eq("0.1.0")
57
+ end
58
+
59
+ it "has a map of dependencies" do
60
+ expect(cookbook.dependencies).to eq({})
61
+ end
62
+
50
63
  end
51
64
 
52
- it "has a version" do
53
- expect(cookbook.version).to eq("0.1.0")
65
+ context "and the cookbook has only a metadata.json" do
66
+
67
+ let(:cookbook_root) { File.join(fixtures_path, 'example_cookbook_metadata_json_only') }
68
+
69
+ it "has a name" do
70
+ expect(cookbook.name).to eq("example_cookbook")
71
+ expect(cookbook.cookbook_name).to eq("example_cookbook")
72
+ end
73
+
74
+ it "has a version" do
75
+ expect(cookbook.version).to eq("0.1.0")
76
+ end
77
+
78
+ it "has a map of dependencies" do
79
+ expect(cookbook.dependencies).to eq({})
80
+ end
81
+
54
82
  end
55
83
 
56
- it "has a map of dependencies" do
57
- expect(cookbook.dependencies).to eq({})
84
+ context "and the cookbook has no metadata" do
85
+
86
+ let(:cookbook_root) { File.join(fixtures_path, 'example_cookbook_no_metadata') }
87
+
88
+ it "raises a MalformedCookbook error" do
89
+ msg = "Cookbook at #{cookbook_root} has neither metadata.json or metadata.rb"
90
+
91
+ expect { cookbook }.to raise_error(ChefDK::MalformedCookbook, msg)
92
+ end
93
+
58
94
  end
59
95
 
60
96
  end
@@ -59,6 +59,18 @@ describe ChefDK::CookbookProfiler::Git do
59
59
 
60
60
  end
61
61
 
62
+ context "when the remote is a local branch" do
63
+
64
+ before do
65
+ allow(git_profiler).to receive(:remote_name).and_return(".")
66
+ end
67
+
68
+ it "reports that the repo doesn't have a remote" do
69
+ expect(git_profiler.have_remote?).to be(false)
70
+ end
71
+
72
+ end
73
+
62
74
  context "with a remote configured" do
63
75
 
64
76
  include_context "setup git cookbook remote"
@@ -1,3 +1,3 @@
1
- source "https://supermarket.getchef.com"
1
+ source "https://supermarket.chef.io"
2
2
 
3
3
  metadata
@@ -1,3 +1,3 @@
1
- source "https://supermarket.getchef.com"
1
+ source "https://supermarket.chef.io"
2
2
 
3
3
  metadata
@@ -1,3 +1,3 @@
1
- source "https://supermarket.getchef.com"
1
+ source "https://supermarket.chef.io"
2
2
 
3
3
  metadata
@@ -2,8 +2,8 @@
2
2
  "nginx": {
3
3
  "0.10.0": {
4
4
  "location_type": "opscode",
5
- "location_path": "https://supermarket.getchef.com/api/v1",
6
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.10.0/download",
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
7
  "dependencies": {
8
8
  "runit": ">= 0.0.0",
9
9
  "build-essential": ">= 0.0.0"
@@ -11,8 +11,8 @@
11
11
  },
12
12
  "0.12.1": {
13
13
  "location_type": "opscode",
14
- "location_path": "https://supermarket.getchef.com/api/v1",
15
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.12.1/download",
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
16
  "dependencies": {
17
17
  "runit": ">= 0.0.0",
18
18
  "build-essential": ">= 0.0.0"
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "0.14.0": {
22
22
  "location_type": "opscode",
23
- "location_path": "https://supermarket.getchef.com/api/v1",
24
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.14.0/download",
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
25
  "dependencies": {
26
26
  "runit": ">= 0.0.0",
27
27
  "build-essential": ">= 0.0.0"
@@ -29,8 +29,8 @@
29
29
  },
30
30
  "0.14.1": {
31
31
  "location_type": "opscode",
32
- "location_path": "https://supermarket.getchef.com/api/v1",
33
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.14.1/download",
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
34
  "dependencies": {
35
35
  "runit": ">= 0.0.0",
36
36
  "build-essential": ">= 0.0.0"
@@ -38,8 +38,8 @@
38
38
  },
39
39
  "0.14.2": {
40
40
  "location_type": "opscode",
41
- "location_path": "https://supermarket.getchef.com/api/v1",
42
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.14.2/download",
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
43
  "dependencies": {
44
44
  "runit": ">= 0.0.0",
45
45
  "build-essential": ">= 0.0.0"
@@ -47,8 +47,8 @@
47
47
  },
48
48
  "0.14.3": {
49
49
  "location_type": "opscode",
50
- "location_path": "https://supermarket.getchef.com/api/v1",
51
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.14.3/download",
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
52
  "dependencies": {
53
53
  "runit": ">= 0.0.0",
54
54
  "build-essential": ">= 0.0.0"
@@ -56,8 +56,8 @@
56
56
  },
57
57
  "0.14.4": {
58
58
  "location_type": "opscode",
59
- "location_path": "https://supermarket.getchef.com/api/v1",
60
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.14.4/download",
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
61
  "dependencies": {
62
62
  "build-essential": ">= 0.0.0",
63
63
  "runit": ">= 0.0.0"
@@ -65,8 +65,8 @@
65
65
  },
66
66
  "0.99.0": {
67
67
  "location_type": "opscode",
68
- "location_path": "https://supermarket.getchef.com/api/v1",
69
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.99.0/download",
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
70
  "dependencies": {
71
71
  "build-essential": ">= 0.0.0",
72
72
  "runit": ">= 0.0.0"
@@ -74,8 +74,8 @@
74
74
  },
75
75
  "0.99.2": {
76
76
  "location_type": "opscode",
77
- "location_path": "https://supermarket.getchef.com/api/v1",
78
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.99.2/download",
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
79
  "dependencies": {
80
80
  "build-essential": ">= 0.0.0",
81
81
  "runit": ">= 0.0.0"
@@ -83,8 +83,8 @@
83
83
  },
84
84
  "0.100.0": {
85
85
  "location_type": "opscode",
86
- "location_path": "https://supermarket.getchef.com/api/v1",
87
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.100.0/download",
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
88
  "dependencies": {
89
89
  "build-essential": ">= 0.0.0",
90
90
  "runit": ">= 0.0.0",
@@ -93,8 +93,8 @@
93
93
  },
94
94
  "0.100.2": {
95
95
  "location_type": "opscode",
96
- "location_path": "https://supermarket.getchef.com/api/v1",
97
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.100.2/download",
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
98
  "dependencies": {
99
99
  "build-essential": ">= 0.0.0",
100
100
  "runit": ">= 0.0.0",
@@ -103,8 +103,8 @@
103
103
  },
104
104
  "0.101.0": {
105
105
  "location_type": "opscode",
106
- "location_path": "https://supermarket.getchef.com/api/v1",
107
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.101.0/download",
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
108
  "dependencies": {
109
109
  "build-essential": ">= 0.0.0",
110
110
  "runit": ">= 0.0.0",
@@ -114,8 +114,8 @@
114
114
  },
115
115
  "0.101.2": {
116
116
  "location_type": "opscode",
117
- "location_path": "https://supermarket.getchef.com/api/v1",
118
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.101.2/download",
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
119
  "dependencies": {
120
120
  "build-essential": ">= 0.0.0",
121
121
  "runit": ">= 0.0.0",
@@ -125,8 +125,8 @@
125
125
  },
126
126
  "0.101.4": {
127
127
  "location_type": "opscode",
128
- "location_path": "https://supermarket.getchef.com/api/v1",
129
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.101.4/download",
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
130
  "dependencies": {
131
131
  "build-essential": ">= 0.0.0",
132
132
  "runit": ">= 0.0.0",
@@ -137,8 +137,8 @@
137
137
  },
138
138
  "0.101.6": {
139
139
  "location_type": "opscode",
140
- "location_path": "https://supermarket.getchef.com/api/v1",
141
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.101.6/download",
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
142
  "dependencies": {
143
143
  "build-essential": ">= 0.0.0",
144
144
  "runit": ">= 0.0.0",
@@ -149,8 +149,8 @@
149
149
  },
150
150
  "1.0.0": {
151
151
  "location_type": "opscode",
152
- "location_path": "https://supermarket.getchef.com/api/v1",
153
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.0.0/download",
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
154
  "dependencies": {
155
155
  "build-essential": ">= 0.0.0",
156
156
  "runit": ">= 0.0.0",
@@ -161,8 +161,8 @@
161
161
  },
162
162
  "1.0.2": {
163
163
  "location_type": "opscode",
164
- "location_path": "https://supermarket.getchef.com/api/v1",
165
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.0.2/download",
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
166
  "dependencies": {
167
167
  "build-essential": ">= 0.0.0",
168
168
  "runit": ">= 0.0.0",
@@ -173,8 +173,8 @@
173
173
  },
174
174
  "1.1.0": {
175
175
  "location_type": "opscode",
176
- "location_path": "https://supermarket.getchef.com/api/v1",
177
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.1.0/download",
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
178
  "dependencies": {
179
179
  "build-essential": ">= 0.0.0",
180
180
  "ohai": ">= 1.1.0"
@@ -182,8 +182,8 @@
182
182
  },
183
183
  "1.1.2": {
184
184
  "location_type": "opscode",
185
- "location_path": "https://supermarket.getchef.com/api/v1",
186
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.1.2/download",
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
187
  "dependencies": {
188
188
  "build-essential": ">= 0.0.0",
189
189
  "ohai": ">= 1.1.2"
@@ -191,8 +191,8 @@
191
191
  },
192
192
  "1.1.4": {
193
193
  "location_type": "opscode",
194
- "location_path": "https://supermarket.getchef.com/api/v1",
195
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.1.4/download",
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
196
  "dependencies": {
197
197
  "build-essential": ">= 0.0.0",
198
198
  "ohai": ">= 1.1.4"
@@ -200,8 +200,8 @@
200
200
  },
201
201
  "1.2.0": {
202
202
  "location_type": "opscode",
203
- "location_path": "https://supermarket.getchef.com/api/v1",
204
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.2.0/download",
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
205
  "dependencies": {
206
206
  "build-essential": ">= 0.0.0",
207
207
  "ohai": ">= 1.1.4"
@@ -209,8 +209,8 @@
209
209
  },
210
210
  "1.3.0": {
211
211
  "location_type": "opscode",
212
- "location_path": "https://supermarket.getchef.com/api/v1",
213
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.3.0/download",
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
214
  "dependencies": {
215
215
  "build-essential": ">= 0.0.0",
216
216
  "ohai": ">= 1.1.4"
@@ -218,8 +218,8 @@
218
218
  },
219
219
  "1.4.0": {
220
220
  "location_type": "opscode",
221
- "location_path": "https://supermarket.getchef.com/api/v1",
222
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.4.0/download",
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
223
  "dependencies": {
224
224
  "build-essential": ">= 0.0.0",
225
225
  "yum": ">= 0.0.0",
@@ -229,8 +229,8 @@
229
229
  },
230
230
  "1.6.0": {
231
231
  "location_type": "opscode",
232
- "location_path": "https://supermarket.getchef.com/api/v1",
233
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.6.0/download",
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
234
  "dependencies": {
235
235
  "build-essential": ">= 0.0.0",
236
236
  "yum": ">= 0.0.0",
@@ -241,8 +241,8 @@
241
241
  },
242
242
  "1.7.0": {
243
243
  "location_type": "opscode",
244
- "location_path": "https://supermarket.getchef.com/api/v1",
245
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.7.0/download",
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
246
  "dependencies": {
247
247
  "build-essential": ">= 0.0.0",
248
248
  "yum": ">= 0.0.0",
@@ -253,8 +253,8 @@
253
253
  },
254
254
  "1.8.0": {
255
255
  "location_type": "opscode",
256
- "location_path": "https://supermarket.getchef.com/api/v1",
257
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/1.8.0/download",
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
258
  "dependencies": {
259
259
  "build-essential": ">= 0.0.0",
260
260
  "yum": ">= 0.0.0",
@@ -265,8 +265,8 @@
265
265
  },
266
266
  "2.0.0": {
267
267
  "location_type": "opscode",
268
- "location_path": "https://supermarket.getchef.com/api/v1",
269
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.0.0/download",
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
270
  "dependencies": {
271
271
  "apt": "~> 2.2.0",
272
272
  "bluepill": "~> 2.3.0",
@@ -278,8 +278,8 @@
278
278
  },
279
279
  "2.0.2": {
280
280
  "location_type": "opscode",
281
- "location_path": "https://supermarket.getchef.com/api/v1",
282
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.0.2/download",
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
283
  "dependencies": {
284
284
  "apt": "~> 2.2.0",
285
285
  "bluepill": "~> 2.3.0",
@@ -291,8 +291,8 @@
291
291
  },
292
292
  "2.0.4": {
293
293
  "location_type": "opscode",
294
- "location_path": "https://supermarket.getchef.com/api/v1",
295
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.0.4/download",
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
296
  "dependencies": {
297
297
  "apt": "~> 2.2.0",
298
298
  "bluepill": "~> 2.3.0",
@@ -304,8 +304,8 @@
304
304
  },
305
305
  "2.0.6": {
306
306
  "location_type": "opscode",
307
- "location_path": "https://supermarket.getchef.com/api/v1",
308
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.0.6/download",
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
309
  "dependencies": {
310
310
  "apt": "~> 2.2.0",
311
311
  "bluepill": "~> 2.3.0",
@@ -317,8 +317,8 @@
317
317
  },
318
318
  "2.0.8": {
319
319
  "location_type": "opscode",
320
- "location_path": "https://supermarket.getchef.com/api/v1",
321
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.0.8/download",
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
322
  "dependencies": {
323
323
  "apt": "~> 2.2.0",
324
324
  "bluepill": "~> 2.3.0",
@@ -330,8 +330,8 @@
330
330
  },
331
331
  "2.1.0": {
332
332
  "location_type": "opscode",
333
- "location_path": "https://supermarket.getchef.com/api/v1",
334
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.1.0/download",
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
335
  "dependencies": {
336
336
  "apt": "~> 2.2.0",
337
337
  "bluepill": "~> 2.3.0",
@@ -344,8 +344,8 @@
344
344
  },
345
345
  "2.2.0": {
346
346
  "location_type": "opscode",
347
- "location_path": "https://supermarket.getchef.com/api/v1",
348
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.2.0/download",
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
349
  "dependencies": {
350
350
  "apt": "~> 2.2.0",
351
351
  "bluepill": "~> 2.3.0",
@@ -358,8 +358,8 @@
358
358
  },
359
359
  "2.2.2": {
360
360
  "location_type": "opscode",
361
- "location_path": "https://supermarket.getchef.com/api/v1",
362
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.2.2/download",
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
363
  "dependencies": {
364
364
  "apt": "~> 2.2.0",
365
365
  "bluepill": "~> 2.3.0",
@@ -372,8 +372,8 @@
372
372
  },
373
373
  "2.3.0": {
374
374
  "location_type": "opscode",
375
- "location_path": "https://supermarket.getchef.com/api/v1",
376
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.3.0/download",
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
377
  "dependencies": {
378
378
  "apt": "~> 2.2.0",
379
379
  "bluepill": "~> 2.3.0",
@@ -386,8 +386,8 @@
386
386
  },
387
387
  "2.4.0": {
388
388
  "location_type": "opscode",
389
- "location_path": "https://supermarket.getchef.com/api/v1",
390
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.4.0/download",
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
391
  "dependencies": {
392
392
  "apt": "~> 2.2.0",
393
393
  "bluepill": "~> 2.3.0",
@@ -400,8 +400,8 @@
400
400
  },
401
401
  "2.4.1": {
402
402
  "location_type": "opscode",
403
- "location_path": "https://supermarket.getchef.com/api/v1",
404
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.4.1/download",
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
405
  "dependencies": {
406
406
  "apt": "~> 2.2.0",
407
407
  "bluepill": "~> 2.3.0",
@@ -414,8 +414,8 @@
414
414
  },
415
415
  "2.4.2": {
416
416
  "location_type": "opscode",
417
- "location_path": "https://supermarket.getchef.com/api/v1",
418
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.4.2/download",
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
419
  "dependencies": {
420
420
  "apt": "~> 2.2.0",
421
421
  "bluepill": "~> 2.3.0",
@@ -428,8 +428,8 @@
428
428
  },
429
429
  "2.4.4": {
430
430
  "location_type": "opscode",
431
- "location_path": "https://supermarket.getchef.com/api/v1",
432
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.4.4/download",
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
433
  "dependencies": {
434
434
  "apt": "~> 2.2.0",
435
435
  "bluepill": "~> 2.3.0",
@@ -441,8 +441,8 @@
441
441
  },
442
442
  "2.5.0": {
443
443
  "location_type": "opscode",
444
- "location_path": "https://supermarket.getchef.com/api/v1",
445
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.5.0/download",
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
446
  "dependencies": {
447
447
  "apt": "~> 2.2.0",
448
448
  "bluepill": "~> 2.3.0",
@@ -454,8 +454,8 @@
454
454
  },
455
455
  "2.6.2": {
456
456
  "location_type": "opscode",
457
- "location_path": "https://supermarket.getchef.com/api/v1",
458
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.6.2/download",
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
459
  "dependencies": {
460
460
  "apt": "~> 2.2.0",
461
461
  "bluepill": "~> 2.3.0",
@@ -467,8 +467,8 @@
467
467
  },
468
468
  "2.6.0": {
469
469
  "location_type": "opscode",
470
- "location_path": "https://supermarket.getchef.com/api/v1",
471
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.6.0/download",
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
472
  "dependencies": {
473
473
  "apt": "~> 2.2.0",
474
474
  "bluepill": "~> 2.3.0",
@@ -480,8 +480,8 @@
480
480
  },
481
481
  "2.7.0": {
482
482
  "location_type": "opscode",
483
- "location_path": "https://supermarket.getchef.com/api/v1",
484
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.7.0/download",
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
485
  "dependencies": {
486
486
  "apt": "~> 2.2.0",
487
487
  "bluepill": "~> 2.3.0",
@@ -493,8 +493,8 @@
493
493
  },
494
494
  "2.7.2": {
495
495
  "location_type": "opscode",
496
- "location_path": "https://supermarket.getchef.com/api/v1",
497
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.7.2/download",
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
498
  "dependencies": {
499
499
  "apt": "~> 2.2.0",
500
500
  "bluepill": "~> 2.3.0",
@@ -506,8 +506,8 @@
506
506
  },
507
507
  "2.7.4": {
508
508
  "location_type": "opscode",
509
- "location_path": "https://supermarket.getchef.com/api/v1",
510
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/2.7.4/download",
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
511
  "dependencies": {
512
512
  "apt": "~> 2.2.0",
513
513
  "bluepill": "~> 2.3.0",
@@ -519,8 +519,8 @@
519
519
  },
520
520
  "0.8.0": {
521
521
  "location_type": "opscode",
522
- "location_path": "https://supermarket.getchef.com/api/v1",
523
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/nginx/versions/0.8.0/download",
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
524
  "dependencies": {
525
525
  }
526
526
  }
@@ -528,224 +528,224 @@
528
528
  "mysql": {
529
529
  "0.15.0": {
530
530
  "location_type": "opscode",
531
- "location_path": "https://supermarket.getchef.com/api/v1",
532
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.15.0/download",
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
533
  "dependencies": {
534
534
  "openssl": ">= 0.0.0"
535
535
  }
536
536
  },
537
537
  "0.20.0": {
538
538
  "location_type": "opscode",
539
- "location_path": "https://supermarket.getchef.com/api/v1",
540
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.20.0/download",
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
541
  "dependencies": {
542
542
  "openssl": ">= 0.0.0"
543
543
  }
544
544
  },
545
545
  "0.21.0": {
546
546
  "location_type": "opscode",
547
- "location_path": "https://supermarket.getchef.com/api/v1",
548
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.21.0/download",
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
549
  "dependencies": {
550
550
  "openssl": ">= 0.0.0"
551
551
  }
552
552
  },
553
553
  "0.21.1": {
554
554
  "location_type": "opscode",
555
- "location_path": "https://supermarket.getchef.com/api/v1",
556
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.21.1/download",
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
557
  "dependencies": {
558
558
  "openssl": ">= 0.0.0"
559
559
  }
560
560
  },
561
561
  "0.21.2": {
562
562
  "location_type": "opscode",
563
- "location_path": "https://supermarket.getchef.com/api/v1",
564
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.21.2/download",
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
565
  "dependencies": {
566
566
  "openssl": ">= 0.0.0"
567
567
  }
568
568
  },
569
569
  "0.21.3": {
570
570
  "location_type": "opscode",
571
- "location_path": "https://supermarket.getchef.com/api/v1",
572
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.21.3/download",
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
573
  "dependencies": {
574
574
  "openssl": ">= 0.0.0"
575
575
  }
576
576
  },
577
577
  "0.21.5": {
578
578
  "location_type": "opscode",
579
- "location_path": "https://supermarket.getchef.com/api/v1",
580
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.21.5/download",
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
581
  "dependencies": {
582
582
  "openssl": ">= 0.0.0"
583
583
  }
584
584
  },
585
585
  "0.22.0": {
586
586
  "location_type": "opscode",
587
- "location_path": "https://supermarket.getchef.com/api/v1",
588
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.22.0/download",
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
589
  "dependencies": {
590
590
  "openssl": ">= 0.0.0"
591
591
  }
592
592
  },
593
593
  "0.23.0": {
594
594
  "location_type": "opscode",
595
- "location_path": "https://supermarket.getchef.com/api/v1",
596
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.23.0/download",
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
597
  "dependencies": {
598
598
  "openssl": ">= 0.0.0"
599
599
  }
600
600
  },
601
601
  "0.23.1": {
602
602
  "location_type": "opscode",
603
- "location_path": "https://supermarket.getchef.com/api/v1",
604
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.23.1/download",
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
605
  "dependencies": {
606
606
  "openssl": ">= 0.0.0"
607
607
  }
608
608
  },
609
609
  "0.24.0": {
610
610
  "location_type": "opscode",
611
- "location_path": "https://supermarket.getchef.com/api/v1",
612
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.24.0/download",
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
613
  "dependencies": {
614
614
  "openssl": ">= 0.0.0"
615
615
  }
616
616
  },
617
617
  "0.24.1": {
618
618
  "location_type": "opscode",
619
- "location_path": "https://supermarket.getchef.com/api/v1",
620
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.24.1/download",
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
621
  "dependencies": {
622
622
  "openssl": ">= 0.0.0"
623
623
  }
624
624
  },
625
625
  "0.24.2": {
626
626
  "location_type": "opscode",
627
- "location_path": "https://supermarket.getchef.com/api/v1",
628
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.24.2/download",
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
629
  "dependencies": {
630
630
  "openssl": ">= 0.0.0"
631
631
  }
632
632
  },
633
633
  "0.24.3": {
634
634
  "location_type": "opscode",
635
- "location_path": "https://supermarket.getchef.com/api/v1",
636
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.24.3/download",
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
637
  "dependencies": {
638
638
  "openssl": ">= 0.0.0"
639
639
  }
640
640
  },
641
641
  "0.24.4": {
642
642
  "location_type": "opscode",
643
- "location_path": "https://supermarket.getchef.com/api/v1",
644
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.24.4/download",
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
645
  "dependencies": {
646
646
  "openssl": ">= 0.0.0"
647
647
  }
648
648
  },
649
649
  "1.0.0": {
650
650
  "location_type": "opscode",
651
- "location_path": "https://supermarket.getchef.com/api/v1",
652
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.0/download",
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
653
  "dependencies": {
654
654
  "openssl": ">= 0.0.0"
655
655
  }
656
656
  },
657
657
  "1.0.1": {
658
658
  "location_type": "opscode",
659
- "location_path": "https://supermarket.getchef.com/api/v1",
660
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.1/download",
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
661
  "dependencies": {
662
662
  "openssl": ">= 0.0.0"
663
663
  }
664
664
  },
665
665
  "1.0.2": {
666
666
  "location_type": "opscode",
667
- "location_path": "https://supermarket.getchef.com/api/v1",
668
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.2/download",
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
669
  "dependencies": {
670
670
  "openssl": ">= 0.0.0"
671
671
  }
672
672
  },
673
673
  "1.0.3": {
674
674
  "location_type": "opscode",
675
- "location_path": "https://supermarket.getchef.com/api/v1",
676
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.3/download",
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
677
  "dependencies": {
678
678
  "openssl": ">= 0.0.0"
679
679
  }
680
680
  },
681
681
  "1.0.4": {
682
682
  "location_type": "opscode",
683
- "location_path": "https://supermarket.getchef.com/api/v1",
684
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.4/download",
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
685
  "dependencies": {
686
686
  "openssl": ">= 0.0.0"
687
687
  }
688
688
  },
689
689
  "1.0.5": {
690
690
  "location_type": "opscode",
691
- "location_path": "https://supermarket.getchef.com/api/v1",
692
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.5/download",
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
693
  "dependencies": {
694
694
  "openssl": ">= 0.0.0"
695
695
  }
696
696
  },
697
697
  "1.0.6": {
698
698
  "location_type": "opscode",
699
- "location_path": "https://supermarket.getchef.com/api/v1",
700
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.6/download",
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
701
  "dependencies": {
702
702
  "openssl": ">= 0.0.0"
703
703
  }
704
704
  },
705
705
  "1.0.7": {
706
706
  "location_type": "opscode",
707
- "location_path": "https://supermarket.getchef.com/api/v1",
708
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.7/download",
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
709
  "dependencies": {
710
710
  "openssl": ">= 0.0.0"
711
711
  }
712
712
  },
713
713
  "1.0.8": {
714
714
  "location_type": "opscode",
715
- "location_path": "https://supermarket.getchef.com/api/v1",
716
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.0.8/download",
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
717
  "dependencies": {
718
718
  "openssl": ">= 0.0.0"
719
719
  }
720
720
  },
721
721
  "1.2.1": {
722
722
  "location_type": "opscode",
723
- "location_path": "https://supermarket.getchef.com/api/v1",
724
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.2.1/download",
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
725
  "dependencies": {
726
726
  "openssl": ">= 0.0.0"
727
727
  }
728
728
  },
729
729
  "1.2.2": {
730
730
  "location_type": "opscode",
731
- "location_path": "https://supermarket.getchef.com/api/v1",
732
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.2.2/download",
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
733
  "dependencies": {
734
734
  "openssl": ">= 0.0.0"
735
735
  }
736
736
  },
737
737
  "1.2.4": {
738
738
  "location_type": "opscode",
739
- "location_path": "https://supermarket.getchef.com/api/v1",
740
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.2.4/download",
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
741
  "dependencies": {
742
742
  "openssl": ">= 0.0.0"
743
743
  }
744
744
  },
745
745
  "1.2.6": {
746
746
  "location_type": "opscode",
747
- "location_path": "https://supermarket.getchef.com/api/v1",
748
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.2.6/download",
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
749
  "dependencies": {
750
750
  "openssl": ">= 0.0.0",
751
751
  "windows": ">= 0.0.0"
@@ -753,8 +753,8 @@
753
753
  },
754
754
  "1.3.0": {
755
755
  "location_type": "opscode",
756
- "location_path": "https://supermarket.getchef.com/api/v1",
757
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/1.3.0/download",
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
758
  "dependencies": {
759
759
  "openssl": ">= 0.0.0",
760
760
  "build-essential": ">= 0.0.0"
@@ -762,8 +762,8 @@
762
762
  },
763
763
  "2.0.0": {
764
764
  "location_type": "opscode",
765
- "location_path": "https://supermarket.getchef.com/api/v1",
766
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/2.0.0/download",
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
767
  "dependencies": {
768
768
  "openssl": ">= 0.0.0",
769
769
  "build-essential": ">= 0.0.0"
@@ -771,8 +771,8 @@
771
771
  },
772
772
  "2.0.2": {
773
773
  "location_type": "opscode",
774
- "location_path": "https://supermarket.getchef.com/api/v1",
775
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/2.0.2/download",
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
776
  "dependencies": {
777
777
  "openssl": ">= 0.0.0",
778
778
  "build-essential": ">= 0.0.0"
@@ -780,8 +780,8 @@
780
780
  },
781
781
  "2.1.0": {
782
782
  "location_type": "opscode",
783
- "location_path": "https://supermarket.getchef.com/api/v1",
784
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/2.1.0/download",
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
785
  "dependencies": {
786
786
  "openssl": ">= 0.0.0",
787
787
  "build-essential": ">= 0.0.0"
@@ -789,8 +789,8 @@
789
789
  },
790
790
  "2.1.2": {
791
791
  "location_type": "opscode",
792
- "location_path": "https://supermarket.getchef.com/api/v1",
793
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/2.1.2/download",
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
794
  "dependencies": {
795
795
  "openssl": ">= 0.0.0",
796
796
  "build-essential": ">= 0.0.0"
@@ -798,8 +798,8 @@
798
798
  },
799
799
  "3.0.0": {
800
800
  "location_type": "opscode",
801
- "location_path": "https://supermarket.getchef.com/api/v1",
802
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.0/download",
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
803
  "dependencies": {
804
804
  "openssl": ">= 0.0.0",
805
805
  "build-essential": ">= 0.0.0"
@@ -807,8 +807,8 @@
807
807
  },
808
808
  "3.0.2": {
809
809
  "location_type": "opscode",
810
- "location_path": "https://supermarket.getchef.com/api/v1",
811
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.2/download",
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
812
  "dependencies": {
813
813
  "openssl": ">= 0.0.0",
814
814
  "build-essential": "> 1.1.0"
@@ -816,8 +816,8 @@
816
816
  },
817
817
  "3.0.4": {
818
818
  "location_type": "opscode",
819
- "location_path": "https://supermarket.getchef.com/api/v1",
820
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.4/download",
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
821
  "dependencies": {
822
822
  "openssl": ">= 0.0.0",
823
823
  "build-essential": "> 1.1.0"
@@ -825,8 +825,8 @@
825
825
  },
826
826
  "3.0.6": {
827
827
  "location_type": "opscode",
828
- "location_path": "https://supermarket.getchef.com/api/v1",
829
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.6/download",
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
830
  "dependencies": {
831
831
  "openssl": "~> 1.1.0",
832
832
  "build-essential": "~> 1.4.0"
@@ -834,8 +834,8 @@
834
834
  },
835
835
  "3.0.8": {
836
836
  "location_type": "opscode",
837
- "location_path": "https://supermarket.getchef.com/api/v1",
838
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.8/download",
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
839
  "dependencies": {
840
840
  "openssl": "~> 1.1.0",
841
841
  "build-essential": "~> 1.4.0"
@@ -843,8 +843,8 @@
843
843
  },
844
844
  "3.0.10": {
845
845
  "location_type": "opscode",
846
- "location_path": "https://supermarket.getchef.com/api/v1",
847
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.10/download",
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
848
  "dependencies": {
849
849
  "openssl": "~> 1.1.0",
850
850
  "build-essential": "~> 1.4.0"
@@ -852,8 +852,8 @@
852
852
  },
853
853
  "3.0.12": {
854
854
  "location_type": "opscode",
855
- "location_path": "https://supermarket.getchef.com/api/v1",
856
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/3.0.12/download",
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
857
  "dependencies": {
858
858
  "openssl": "~> 1.1.0",
859
859
  "build-essential": "~> 1.4.0"
@@ -861,8 +861,8 @@
861
861
  },
862
862
  "4.0.0": {
863
863
  "location_type": "opscode",
864
- "location_path": "https://supermarket.getchef.com/api/v1",
865
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.0/download",
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
866
  "dependencies": {
867
867
  "openssl": "~> 1.1.0",
868
868
  "build-essential": "~> 1.4.0"
@@ -870,8 +870,8 @@
870
870
  },
871
871
  "4.0.2": {
872
872
  "location_type": "opscode",
873
- "location_path": "https://supermarket.getchef.com/api/v1",
874
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.2/download",
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
875
  "dependencies": {
876
876
  "openssl": "~> 1.1.0",
877
877
  "build-essential": "~> 1.4.0"
@@ -879,8 +879,8 @@
879
879
  },
880
880
  "4.0.4": {
881
881
  "location_type": "opscode",
882
- "location_path": "https://supermarket.getchef.com/api/v1",
883
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.4/download",
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
884
  "dependencies": {
885
885
  "openssl": "~> 1.1.0",
886
886
  "build-essential": "~> 1.4.0"
@@ -888,16 +888,16 @@
888
888
  },
889
889
  "5.3.6": {
890
890
  "location_type": "opscode",
891
- "location_path": "https://supermarket.getchef.com/api/v1",
892
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.3.6/download",
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
893
  "dependencies": {
894
894
  "yum-mysql-community": ">= 0.0.0"
895
895
  }
896
896
  },
897
897
  "4.0.6": {
898
898
  "location_type": "opscode",
899
- "location_path": "https://supermarket.getchef.com/api/v1",
900
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.6/download",
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
901
  "dependencies": {
902
902
  "openssl": "~> 1.1.0",
903
903
  "build-essential": "~> 1.4.0"
@@ -905,8 +905,8 @@
905
905
  },
906
906
  "4.0.8": {
907
907
  "location_type": "opscode",
908
- "location_path": "https://supermarket.getchef.com/api/v1",
909
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.8/download",
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
910
  "dependencies": {
911
911
  "openssl": "~> 1.1.0",
912
912
  "build-essential": "~> 1.4.0"
@@ -914,8 +914,8 @@
914
914
  },
915
915
  "4.0.10": {
916
916
  "location_type": "opscode",
917
- "location_path": "https://supermarket.getchef.com/api/v1",
918
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.10/download",
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
919
  "dependencies": {
920
920
  "openssl": "~> 1.1.0",
921
921
  "build-essential": "~> 1.4.0"
@@ -923,8 +923,8 @@
923
923
  },
924
924
  "4.0.12": {
925
925
  "location_type": "opscode",
926
- "location_path": "https://supermarket.getchef.com/api/v1",
927
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.12/download",
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
928
  "dependencies": {
929
929
  "openssl": "~> 1.1.0",
930
930
  "build-essential": "~> 1.4.0"
@@ -932,8 +932,8 @@
932
932
  },
933
933
  "4.0.14": {
934
934
  "location_type": "opscode",
935
- "location_path": "https://supermarket.getchef.com/api/v1",
936
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.14/download",
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
937
  "dependencies": {
938
938
  "openssl": "~> 1.1.0",
939
939
  "build-essential": "~> 1.4.0"
@@ -941,8 +941,8 @@
941
941
  },
942
942
  "4.0.18": {
943
943
  "location_type": "opscode",
944
- "location_path": "https://supermarket.getchef.com/api/v1",
945
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.18/download",
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
946
  "dependencies": {
947
947
  "openssl": "~> 1.1.0",
948
948
  "build-essential": "~> 1.4.0"
@@ -950,8 +950,8 @@
950
950
  },
951
951
  "4.0.20": {
952
952
  "location_type": "opscode",
953
- "location_path": "https://supermarket.getchef.com/api/v1",
954
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.0.20/download",
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
955
  "dependencies": {
956
956
  "openssl": "~> 1.1.0",
957
957
  "build-essential": "~> 1.4.0"
@@ -959,8 +959,8 @@
959
959
  },
960
960
  "4.1.0": {
961
961
  "location_type": "opscode",
962
- "location_path": "https://supermarket.getchef.com/api/v1",
963
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.1.0/download",
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
964
  "dependencies": {
965
965
  "openssl": "~> 1.1.0",
966
966
  "build-essential": "~> 1.4.0"
@@ -968,8 +968,8 @@
968
968
  },
969
969
  "4.1.1": {
970
970
  "location_type": "opscode",
971
- "location_path": "https://supermarket.getchef.com/api/v1",
972
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.1.1/download",
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
973
  "dependencies": {
974
974
  "openssl": "~> 1.1.0",
975
975
  "build-essential": "~> 1.4.0",
@@ -979,8 +979,8 @@
979
979
  },
980
980
  "4.1.2": {
981
981
  "location_type": "opscode",
982
- "location_path": "https://supermarket.getchef.com/api/v1",
983
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/4.1.2/download",
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
984
  "dependencies": {
985
985
  "openssl": "~> 1.1.0",
986
986
  "build-essential": "~> 1.4.0",
@@ -990,158 +990,158 @@
990
990
  },
991
991
  "5.3.0": {
992
992
  "location_type": "opscode",
993
- "location_path": "https://supermarket.getchef.com/api/v1",
994
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.3.0/download",
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
995
  "dependencies": {
996
996
  "yum-mysql-community": ">= 0.0.0"
997
997
  }
998
998
  },
999
999
  "5.3.2": {
1000
1000
  "location_type": "opscode",
1001
- "location_path": "https://supermarket.getchef.com/api/v1",
1002
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.3.2/download",
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
1003
  "dependencies": {
1004
1004
  "yum-mysql-community": ">= 0.0.0"
1005
1005
  }
1006
1006
  },
1007
1007
  "5.3.4": {
1008
1008
  "location_type": "opscode",
1009
- "location_path": "https://supermarket.getchef.com/api/v1",
1010
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.3.4/download",
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
1011
  "dependencies": {
1012
1012
  "yum-mysql-community": ">= 0.0.0"
1013
1013
  }
1014
1014
  },
1015
1015
  "5.0.0": {
1016
1016
  "location_type": "opscode",
1017
- "location_path": "https://supermarket.getchef.com/api/v1",
1018
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.0.0/download",
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
1019
  "dependencies": {
1020
1020
  }
1021
1021
  },
1022
1022
  "5.2.4": {
1023
1023
  "location_type": "opscode",
1024
- "location_path": "https://supermarket.getchef.com/api/v1",
1025
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.4/download",
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
1026
  "dependencies": {
1027
1027
  }
1028
1028
  },
1029
1029
  "5.1.12": {
1030
1030
  "location_type": "opscode",
1031
- "location_path": "https://supermarket.getchef.com/api/v1",
1032
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.12/download",
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
1033
  "dependencies": {
1034
1034
  }
1035
1035
  },
1036
1036
  "5.0.6": {
1037
1037
  "location_type": "opscode",
1038
- "location_path": "https://supermarket.getchef.com/api/v1",
1039
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.0.6/download",
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
1040
  "dependencies": {
1041
1041
  }
1042
1042
  },
1043
1043
  "5.2.8": {
1044
1044
  "location_type": "opscode",
1045
- "location_path": "https://supermarket.getchef.com/api/v1",
1046
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.8/download",
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
1047
  "dependencies": {
1048
1048
  }
1049
1049
  },
1050
1050
  "0.10.0": {
1051
1051
  "location_type": "opscode",
1052
- "location_path": "https://supermarket.getchef.com/api/v1",
1053
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/0.10.0/download",
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
1054
  "dependencies": {
1055
1055
  }
1056
1056
  },
1057
1057
  "5.2.6": {
1058
1058
  "location_type": "opscode",
1059
- "location_path": "https://supermarket.getchef.com/api/v1",
1060
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.6/download",
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
1061
  "dependencies": {
1062
1062
  }
1063
1063
  },
1064
1064
  "5.1.6": {
1065
1065
  "location_type": "opscode",
1066
- "location_path": "https://supermarket.getchef.com/api/v1",
1067
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.6/download",
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
1068
  "dependencies": {
1069
1069
  }
1070
1070
  },
1071
1071
  "5.1.2": {
1072
1072
  "location_type": "opscode",
1073
- "location_path": "https://supermarket.getchef.com/api/v1",
1074
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.2/download",
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
1075
  "dependencies": {
1076
1076
  }
1077
1077
  },
1078
1078
  "5.2.12": {
1079
1079
  "location_type": "opscode",
1080
- "location_path": "https://supermarket.getchef.com/api/v1",
1081
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.12/download",
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
1082
  "dependencies": {
1083
1083
  }
1084
1084
  },
1085
1085
  "5.2.10": {
1086
1086
  "location_type": "opscode",
1087
- "location_path": "https://supermarket.getchef.com/api/v1",
1088
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.10/download",
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
1089
  "dependencies": {
1090
1090
  }
1091
1091
  },
1092
1092
  "5.1.8": {
1093
1093
  "location_type": "opscode",
1094
- "location_path": "https://supermarket.getchef.com/api/v1",
1095
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.8/download",
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
1096
  "dependencies": {
1097
1097
  }
1098
1098
  },
1099
1099
  "5.1.10": {
1100
1100
  "location_type": "opscode",
1101
- "location_path": "https://supermarket.getchef.com/api/v1",
1102
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.10/download",
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
1103
  "dependencies": {
1104
1104
  }
1105
1105
  },
1106
1106
  "5.2.0": {
1107
1107
  "location_type": "opscode",
1108
- "location_path": "https://supermarket.getchef.com/api/v1",
1109
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.0/download",
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
1110
  "dependencies": {
1111
1111
  }
1112
1112
  },
1113
1113
  "5.1.0": {
1114
1114
  "location_type": "opscode",
1115
- "location_path": "https://supermarket.getchef.com/api/v1",
1116
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.0/download",
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
1117
  "dependencies": {
1118
1118
  }
1119
1119
  },
1120
1120
  "5.2.2": {
1121
1121
  "location_type": "opscode",
1122
- "location_path": "https://supermarket.getchef.com/api/v1",
1123
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.2.2/download",
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
1124
  "dependencies": {
1125
1125
  }
1126
1126
  },
1127
1127
  "5.1.4": {
1128
1128
  "location_type": "opscode",
1129
- "location_path": "https://supermarket.getchef.com/api/v1",
1130
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.1.4/download",
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
1131
  "dependencies": {
1132
1132
  }
1133
1133
  },
1134
1134
  "5.0.4": {
1135
1135
  "location_type": "opscode",
1136
- "location_path": "https://supermarket.getchef.com/api/v1",
1137
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.0.4/download",
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
1138
  "dependencies": {
1139
1139
  }
1140
1140
  },
1141
1141
  "5.0.2": {
1142
1142
  "location_type": "opscode",
1143
- "location_path": "https://supermarket.getchef.com/api/v1",
1144
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/mysql/versions/5.0.2/download",
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
1145
  "dependencies": {
1146
1146
  }
1147
1147
  }
@@ -1149,8 +1149,8 @@
1149
1149
  "application": {
1150
1150
  "0.3.0": {
1151
1151
  "location_type": "opscode",
1152
- "location_path": "https://supermarket.getchef.com/api/v1",
1153
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.3.0/download",
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
1154
  "dependencies": {
1155
1155
  "unicorn": ">= 0.0.0",
1156
1156
  "runit": ">= 0.0.0",
@@ -1160,8 +1160,8 @@
1160
1160
  },
1161
1161
  "0.4.0": {
1162
1162
  "location_type": "opscode",
1163
- "location_path": "https://supermarket.getchef.com/api/v1",
1164
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.4.0/download",
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
1165
  "dependencies": {
1166
1166
  "unicorn": ">= 0.0.0",
1167
1167
  "runit": ">= 0.0.0",
@@ -1171,8 +1171,8 @@
1171
1171
  },
1172
1172
  "0.5.0": {
1173
1173
  "location_type": "opscode",
1174
- "location_path": "https://supermarket.getchef.com/api/v1",
1175
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.5.0/download",
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
1176
  "dependencies": {
1177
1177
  "passenger_apache2": ">= 0.0.0",
1178
1178
  "unicorn": ">= 0.0.0",
@@ -1184,8 +1184,8 @@
1184
1184
  },
1185
1185
  "0.6.0": {
1186
1186
  "location_type": "opscode",
1187
- "location_path": "https://supermarket.getchef.com/api/v1",
1188
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.6.0/download",
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
1189
  "dependencies": {
1190
1190
  "passenger_apache2": ">= 0.0.0",
1191
1191
  "runit": ">= 0.0.0",
@@ -1197,8 +1197,8 @@
1197
1197
  },
1198
1198
  "0.6.2": {
1199
1199
  "location_type": "opscode",
1200
- "location_path": "https://supermarket.getchef.com/api/v1",
1201
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.6.2/download",
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
1202
  "dependencies": {
1203
1203
  "passenger_apache2": ">= 0.0.0",
1204
1204
  "runit": ">= 0.0.0",
@@ -1210,8 +1210,8 @@
1210
1210
  },
1211
1211
  "0.6.3": {
1212
1212
  "location_type": "opscode",
1213
- "location_path": "https://supermarket.getchef.com/api/v1",
1214
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.6.3/download",
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
1215
  "dependencies": {
1216
1216
  "ruby_enterprise": ">= 0.0.0",
1217
1217
  "passenger_enterprise": ">= 0.0.0",
@@ -1223,8 +1223,8 @@
1223
1223
  },
1224
1224
  "0.7.0": {
1225
1225
  "location_type": "opscode",
1226
- "location_path": "https://supermarket.getchef.com/api/v1",
1227
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.7.0/download",
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
1228
  "dependencies": {
1229
1229
  "ruby_enterprise": ">= 0.0.0",
1230
1230
  "passenger_enterprise": ">= 0.0.0",
@@ -1236,8 +1236,8 @@
1236
1236
  },
1237
1237
  "0.8.0": {
1238
1238
  "location_type": "opscode",
1239
- "location_path": "https://supermarket.getchef.com/api/v1",
1240
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.8.0/download",
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
1241
  "dependencies": {
1242
1242
  "passenger_apache2": ">= 0.0.0",
1243
1243
  "runit": ">= 0.0.0",
@@ -1250,8 +1250,8 @@
1250
1250
  },
1251
1251
  "0.8.1": {
1252
1252
  "location_type": "opscode",
1253
- "location_path": "https://supermarket.getchef.com/api/v1",
1254
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.8.1/download",
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
1255
  "dependencies": {
1256
1256
  "ruby_enterprise": ">= 0.0.0",
1257
1257
  "passenger_enterprise": ">= 0.0.0",
@@ -1264,8 +1264,8 @@
1264
1264
  },
1265
1265
  "0.99.0": {
1266
1266
  "location_type": "opscode",
1267
- "location_path": "https://supermarket.getchef.com/api/v1",
1268
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.0/download",
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
1269
  "dependencies": {
1270
1270
  "runit": ">= 0.0.0",
1271
1271
  "unicorn": ">= 0.0.0",
@@ -1276,8 +1276,8 @@
1276
1276
  },
1277
1277
  "0.99.1": {
1278
1278
  "location_type": "opscode",
1279
- "location_path": "https://supermarket.getchef.com/api/v1",
1280
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.1/download",
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
1281
  "dependencies": {
1282
1282
  "runit": ">= 0.0.0",
1283
1283
  "unicorn": ">= 0.0.0",
@@ -1288,8 +1288,8 @@
1288
1288
  },
1289
1289
  "0.99.2": {
1290
1290
  "location_type": "opscode",
1291
- "location_path": "https://supermarket.getchef.com/api/v1",
1292
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.2/download",
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
1293
  "dependencies": {
1294
1294
  "runit": ">= 0.0.0",
1295
1295
  "unicorn": ">= 0.0.0",
@@ -1300,8 +1300,8 @@
1300
1300
  },
1301
1301
  "0.99.3": {
1302
1302
  "location_type": "opscode",
1303
- "location_path": "https://supermarket.getchef.com/api/v1",
1304
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.3/download",
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
1305
  "dependencies": {
1306
1306
  "runit": ">= 0.0.0",
1307
1307
  "unicorn": ">= 0.0.0",
@@ -1314,8 +1314,8 @@
1314
1314
  },
1315
1315
  "0.99.4": {
1316
1316
  "location_type": "opscode",
1317
- "location_path": "https://supermarket.getchef.com/api/v1",
1318
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.4/download",
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
1319
  "dependencies": {
1320
1320
  "runit": ">= 0.0.0",
1321
1321
  "unicorn": ">= 0.0.0",
@@ -1328,8 +1328,8 @@
1328
1328
  },
1329
1329
  "0.99.5": {
1330
1330
  "location_type": "opscode",
1331
- "location_path": "https://supermarket.getchef.com/api/v1",
1332
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.5/download",
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
1333
  "dependencies": {
1334
1334
  "runit": ">= 0.0.0",
1335
1335
  "unicorn": ">= 0.0.0",
@@ -1343,8 +1343,8 @@
1343
1343
  },
1344
1344
  "0.99.6": {
1345
1345
  "location_type": "opscode",
1346
- "location_path": "https://supermarket.getchef.com/api/v1",
1347
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.6/download",
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
1348
  "dependencies": {
1349
1349
  "runit": ">= 0.0.0",
1350
1350
  "unicorn": ">= 0.0.0",
@@ -1358,8 +1358,8 @@
1358
1358
  },
1359
1359
  "0.99.7": {
1360
1360
  "location_type": "opscode",
1361
- "location_path": "https://supermarket.getchef.com/api/v1",
1362
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.7/download",
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
1363
  "dependencies": {
1364
1364
  "runit": ">= 0.0.0",
1365
1365
  "unicorn": ">= 0.0.0",
@@ -1373,8 +1373,8 @@
1373
1373
  },
1374
1374
  "0.99.8": {
1375
1375
  "location_type": "opscode",
1376
- "location_path": "https://supermarket.getchef.com/api/v1",
1377
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.8/download",
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
1378
  "dependencies": {
1379
1379
  "runit": ">= 0.0.0",
1380
1380
  "unicorn": ">= 0.0.0",
@@ -1388,8 +1388,8 @@
1388
1388
  },
1389
1389
  "0.99.9": {
1390
1390
  "location_type": "opscode",
1391
- "location_path": "https://supermarket.getchef.com/api/v1",
1392
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.9/download",
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
1393
  "dependencies": {
1394
1394
  "runit": ">= 0.0.0",
1395
1395
  "unicorn": ">= 0.0.0",
@@ -1403,8 +1403,8 @@
1403
1403
  },
1404
1404
  "0.99.10": {
1405
1405
  "location_type": "opscode",
1406
- "location_path": "https://supermarket.getchef.com/api/v1",
1407
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.10/download",
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
1408
  "dependencies": {
1409
1409
  "runit": ">= 0.0.0",
1410
1410
  "unicorn": ">= 0.0.0",
@@ -1418,8 +1418,8 @@
1418
1418
  },
1419
1419
  "0.99.11": {
1420
1420
  "location_type": "opscode",
1421
- "location_path": "https://supermarket.getchef.com/api/v1",
1422
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.11/download",
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
1423
  "dependencies": {
1424
1424
  "runit": ">= 0.0.0",
1425
1425
  "unicorn": ">= 0.0.0",
@@ -1433,8 +1433,8 @@
1433
1433
  },
1434
1434
  "0.99.12": {
1435
1435
  "location_type": "opscode",
1436
- "location_path": "https://supermarket.getchef.com/api/v1",
1437
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.12/download",
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
1438
  "dependencies": {
1439
1439
  "runit": ">= 0.0.0",
1440
1440
  "unicorn": ">= 0.0.0",
@@ -1448,8 +1448,8 @@
1448
1448
  },
1449
1449
  "0.99.14": {
1450
1450
  "location_type": "opscode",
1451
- "location_path": "https://supermarket.getchef.com/api/v1",
1452
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/0.99.14/download",
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
1453
  "dependencies": {
1454
1454
  "runit": ">= 0.0.0",
1455
1455
  "unicorn": ">= 0.0.0",
@@ -1463,8 +1463,8 @@
1463
1463
  },
1464
1464
  "1.0.0": {
1465
1465
  "location_type": "opscode",
1466
- "location_path": "https://supermarket.getchef.com/api/v1",
1467
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/1.0.0/download",
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
1468
  "dependencies": {
1469
1469
  "runit": ">= 0.0.0",
1470
1470
  "unicorn": ">= 0.0.0",
@@ -1478,8 +1478,8 @@
1478
1478
  },
1479
1479
  "1.0.2": {
1480
1480
  "location_type": "opscode",
1481
- "location_path": "https://supermarket.getchef.com/api/v1",
1482
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/1.0.2/download",
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
1483
  "dependencies": {
1484
1484
  "runit": ">= 0.0.0",
1485
1485
  "unicorn": ">= 0.0.0",
@@ -1493,8 +1493,8 @@
1493
1493
  },
1494
1494
  "1.0.4": {
1495
1495
  "location_type": "opscode",
1496
- "location_path": "https://supermarket.getchef.com/api/v1",
1497
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/1.0.4/download",
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
1498
  "dependencies": {
1499
1499
  "runit": ">= 0.0.0",
1500
1500
  "unicorn": ">= 0.0.0",
@@ -1508,57 +1508,57 @@
1508
1508
  },
1509
1509
  "2.0.4": {
1510
1510
  "location_type": "opscode",
1511
- "location_path": "https://supermarket.getchef.com/api/v1",
1512
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/2.0.4/download",
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
1513
  "dependencies": {
1514
1514
  }
1515
1515
  },
1516
1516
  "4.0.0": {
1517
1517
  "location_type": "opscode",
1518
- "location_path": "https://supermarket.getchef.com/api/v1",
1519
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/4.0.0/download",
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
1520
  "dependencies": {
1521
1521
  }
1522
1522
  },
1523
1523
  "2.0.2": {
1524
1524
  "location_type": "opscode",
1525
- "location_path": "https://supermarket.getchef.com/api/v1",
1526
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/2.0.2/download",
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
1527
  "dependencies": {
1528
1528
  }
1529
1529
  },
1530
1530
  "3.0.0": {
1531
1531
  "location_type": "opscode",
1532
- "location_path": "https://supermarket.getchef.com/api/v1",
1533
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/3.0.0/download",
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
1534
  "dependencies": {
1535
1535
  }
1536
1536
  },
1537
1537
  "2.0.0": {
1538
1538
  "location_type": "opscode",
1539
- "location_path": "https://supermarket.getchef.com/api/v1",
1540
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/2.0.0/download",
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
1541
  "dependencies": {
1542
1542
  }
1543
1543
  },
1544
1544
  "4.1.2": {
1545
1545
  "location_type": "opscode",
1546
- "location_path": "https://supermarket.getchef.com/api/v1",
1547
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/4.1.2/download",
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
1548
  "dependencies": {
1549
1549
  }
1550
1550
  },
1551
1551
  "4.1.0": {
1552
1552
  "location_type": "opscode",
1553
- "location_path": "https://supermarket.getchef.com/api/v1",
1554
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/4.1.0/download",
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
1555
  "dependencies": {
1556
1556
  }
1557
1557
  },
1558
1558
  "4.1.4": {
1559
1559
  "location_type": "opscode",
1560
- "location_path": "https://supermarket.getchef.com/api/v1",
1561
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/application/versions/4.1.4/download",
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
1562
  "dependencies": {
1563
1563
  }
1564
1564
  }
@@ -1566,8 +1566,8 @@
1566
1566
  "database": {
1567
1567
  "0.6.0": {
1568
1568
  "location_type": "opscode",
1569
- "location_path": "https://supermarket.getchef.com/api/v1",
1570
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/0.6.0/download",
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
1571
  "dependencies": {
1572
1572
  "mysql": ">= 0.0.0",
1573
1573
  "xfs": ">= 0.0.0",
@@ -1576,8 +1576,8 @@
1576
1576
  },
1577
1577
  "0.7.0": {
1578
1578
  "location_type": "opscode",
1579
- "location_path": "https://supermarket.getchef.com/api/v1",
1580
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/0.7.0/download",
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
1581
  "dependencies": {
1582
1582
  "mysql": ">= 0.0.0",
1583
1583
  "aws": ">= 0.0.0",
@@ -1586,8 +1586,8 @@
1586
1586
  },
1587
1587
  "0.7.1": {
1588
1588
  "location_type": "opscode",
1589
- "location_path": "https://supermarket.getchef.com/api/v1",
1590
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/0.7.1/download",
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
1591
  "dependencies": {
1592
1592
  "mysql": ">= 0.0.0",
1593
1593
  "aws": ">= 0.0.0",
@@ -1596,8 +1596,8 @@
1596
1596
  },
1597
1597
  "0.99.0": {
1598
1598
  "location_type": "opscode",
1599
- "location_path": "https://supermarket.getchef.com/api/v1",
1600
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/0.99.0/download",
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
1601
  "dependencies": {
1602
1602
  "mysql": ">= 0.0.0",
1603
1603
  "aws": ">= 0.0.0",
@@ -1606,8 +1606,8 @@
1606
1606
  },
1607
1607
  "0.99.1": {
1608
1608
  "location_type": "opscode",
1609
- "location_path": "https://supermarket.getchef.com/api/v1",
1610
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/0.99.1/download",
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
1611
  "dependencies": {
1612
1612
  "mysql": ">= 0.0.0",
1613
1613
  "aws": ">= 0.0.0",
@@ -1616,8 +1616,8 @@
1616
1616
  },
1617
1617
  "1.0.0": {
1618
1618
  "location_type": "opscode",
1619
- "location_path": "https://supermarket.getchef.com/api/v1",
1620
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.0.0/download",
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
1621
  "dependencies": {
1622
1622
  "mysql": ">= 1.2.0",
1623
1623
  "aws": ">= 0.0.0",
@@ -1626,8 +1626,8 @@
1626
1626
  },
1627
1627
  "1.1.0": {
1628
1628
  "location_type": "opscode",
1629
- "location_path": "https://supermarket.getchef.com/api/v1",
1630
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.1.0/download",
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
1631
  "dependencies": {
1632
1632
  "mysql": ">= 1.2.0",
1633
1633
  "postgresql": ">= 0.0.0",
@@ -1637,8 +1637,8 @@
1637
1637
  },
1638
1638
  "1.1.2": {
1639
1639
  "location_type": "opscode",
1640
- "location_path": "https://supermarket.getchef.com/api/v1",
1641
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.1.2/download",
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
1642
  "dependencies": {
1643
1643
  "mysql": ">= 1.2.0",
1644
1644
  "postgresql": ">= 0.0.0",
@@ -1648,8 +1648,8 @@
1648
1648
  },
1649
1649
  "1.1.4": {
1650
1650
  "location_type": "opscode",
1651
- "location_path": "https://supermarket.getchef.com/api/v1",
1652
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.1.4/download",
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
1653
  "dependencies": {
1654
1654
  "mysql": ">= 1.2.0",
1655
1655
  "postgresql": ">= 0.0.0",
@@ -1659,8 +1659,8 @@
1659
1659
  },
1660
1660
  "1.2.0": {
1661
1661
  "location_type": "opscode",
1662
- "location_path": "https://supermarket.getchef.com/api/v1",
1663
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.2.0/download",
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
1664
  "dependencies": {
1665
1665
  "mysql": ">= 1.2.0",
1666
1666
  "postgresql": ">= 0.0.0",
@@ -1670,8 +1670,8 @@
1670
1670
  },
1671
1671
  "1.3.2": {
1672
1672
  "location_type": "opscode",
1673
- "location_path": "https://supermarket.getchef.com/api/v1",
1674
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.2/download",
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
1675
  "dependencies": {
1676
1676
  "mysql": ">= 1.2.0",
1677
1677
  "postgresql": ">= 0.0.0",
@@ -1681,8 +1681,8 @@
1681
1681
  },
1682
1682
  "1.3.4": {
1683
1683
  "location_type": "opscode",
1684
- "location_path": "https://supermarket.getchef.com/api/v1",
1685
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.4/download",
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
1686
  "dependencies": {
1687
1687
  "mysql": ">= 1.3.0",
1688
1688
  "postgresql": ">= 1.0.0",
@@ -1692,8 +1692,8 @@
1692
1692
  },
1693
1693
  "1.3.6": {
1694
1694
  "location_type": "opscode",
1695
- "location_path": "https://supermarket.getchef.com/api/v1",
1696
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.6/download",
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
1697
  "dependencies": {
1698
1698
  "mysql": ">= 1.3.0",
1699
1699
  "postgresql": ">= 1.0.0",
@@ -1703,8 +1703,8 @@
1703
1703
  },
1704
1704
  "1.3.8": {
1705
1705
  "location_type": "opscode",
1706
- "location_path": "https://supermarket.getchef.com/api/v1",
1707
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.8/download",
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
1708
  "dependencies": {
1709
1709
  "mysql": ">= 1.3.0",
1710
1710
  "postgresql": ">= 1.0.0",
@@ -1714,8 +1714,8 @@
1714
1714
  },
1715
1715
  "1.3.10": {
1716
1716
  "location_type": "opscode",
1717
- "location_path": "https://supermarket.getchef.com/api/v1",
1718
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.10/download",
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
1719
  "dependencies": {
1720
1720
  "mysql": ">= 1.3.0",
1721
1721
  "postgresql": ">= 1.0.0",
@@ -1725,8 +1725,8 @@
1725
1725
  },
1726
1726
  "1.3.12": {
1727
1727
  "location_type": "opscode",
1728
- "location_path": "https://supermarket.getchef.com/api/v1",
1729
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.3.12/download",
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
1730
  "dependencies": {
1731
1731
  "mysql": ">= 1.3.0",
1732
1732
  "postgresql": ">= 1.0.0",
@@ -1736,8 +1736,8 @@
1736
1736
  },
1737
1737
  "1.4.0": {
1738
1738
  "location_type": "opscode",
1739
- "location_path": "https://supermarket.getchef.com/api/v1",
1740
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.4.0/download",
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
1741
  "dependencies": {
1742
1742
  "mysql": ">= 1.3.0",
1743
1743
  "postgresql": ">= 1.0.0",
@@ -1747,8 +1747,8 @@
1747
1747
  },
1748
1748
  "1.5.0": {
1749
1749
  "location_type": "opscode",
1750
- "location_path": "https://supermarket.getchef.com/api/v1",
1751
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.5.0/download",
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
1752
  "dependencies": {
1753
1753
  "mysql": ">= 1.3.0",
1754
1754
  "postgresql": ">= 1.0.0",
@@ -1758,8 +1758,8 @@
1758
1758
  },
1759
1759
  "1.5.2": {
1760
1760
  "location_type": "opscode",
1761
- "location_path": "https://supermarket.getchef.com/api/v1",
1762
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.5.2/download",
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
1763
  "dependencies": {
1764
1764
  "mysql": ">= 1.3.0",
1765
1765
  "postgresql": ">= 1.0.0",
@@ -1769,8 +1769,8 @@
1769
1769
  },
1770
1770
  "1.6.0": {
1771
1771
  "location_type": "opscode",
1772
- "location_path": "https://supermarket.getchef.com/api/v1",
1773
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/1.6.0/download",
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
1774
  "dependencies": {
1775
1775
  "mysql": ">= 1.3.0",
1776
1776
  "postgresql": ">= 1.0.0",
@@ -1780,8 +1780,8 @@
1780
1780
  },
1781
1781
  "2.0.0": {
1782
1782
  "location_type": "opscode",
1783
- "location_path": "https://supermarket.getchef.com/api/v1",
1784
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.0.0/download",
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
1785
  "dependencies": {
1786
1786
  "mysql": ">= 1.3.0",
1787
1787
  "postgresql": ">= 1.0.0",
@@ -1791,8 +1791,8 @@
1791
1791
  },
1792
1792
  "2.1.0": {
1793
1793
  "location_type": "opscode",
1794
- "location_path": "https://supermarket.getchef.com/api/v1",
1795
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.0/download",
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
1796
  "dependencies": {
1797
1797
  "mysql": ">= 5.0.0",
1798
1798
  "postgresql": ">= 1.0.0",
@@ -1802,8 +1802,8 @@
1802
1802
  },
1803
1803
  "2.1.2": {
1804
1804
  "location_type": "opscode",
1805
- "location_path": "https://supermarket.getchef.com/api/v1",
1806
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.2/download",
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
1807
  "dependencies": {
1808
1808
  "mysql": ">= 5.0.0",
1809
1809
  "postgresql": ">= 1.0.0",
@@ -1814,8 +1814,8 @@
1814
1814
  },
1815
1815
  "2.1.4": {
1816
1816
  "location_type": "opscode",
1817
- "location_path": "https://supermarket.getchef.com/api/v1",
1818
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.4/download",
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
1819
  "dependencies": {
1820
1820
  "mysql": ">= 5.0.0",
1821
1821
  "postgresql": ">= 1.0.0",
@@ -1826,8 +1826,8 @@
1826
1826
  },
1827
1827
  "2.1.6": {
1828
1828
  "location_type": "opscode",
1829
- "location_path": "https://supermarket.getchef.com/api/v1",
1830
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.6/download",
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
1831
  "dependencies": {
1832
1832
  "mysql": ">= 5.0.0",
1833
1833
  "postgresql": ">= 1.0.0",
@@ -1838,8 +1838,8 @@
1838
1838
  },
1839
1839
  "2.1.8": {
1840
1840
  "location_type": "opscode",
1841
- "location_path": "https://supermarket.getchef.com/api/v1",
1842
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.8/download",
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
1843
  "dependencies": {
1844
1844
  "mysql": ">= 5.0.0",
1845
1845
  "postgresql": ">= 1.0.0",
@@ -1850,8 +1850,8 @@
1850
1850
  },
1851
1851
  "2.1.10": {
1852
1852
  "location_type": "opscode",
1853
- "location_path": "https://supermarket.getchef.com/api/v1",
1854
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.1.10/download",
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
1855
  "dependencies": {
1856
1856
  "mysql": ">= 5.0.0",
1857
1857
  "postgresql": ">= 1.0.0",
@@ -1862,8 +1862,8 @@
1862
1862
  },
1863
1863
  "2.2.0": {
1864
1864
  "location_type": "opscode",
1865
- "location_path": "https://supermarket.getchef.com/api/v1",
1866
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/database/versions/2.2.0/download",
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
1867
  "dependencies": {
1868
1868
  "mysql": ">= 5.0.0",
1869
1869
  "postgresql": ">= 1.0.0",
@@ -1876,80 +1876,80 @@
1876
1876
  "postgresql": {
1877
1877
  "0.99.0": {
1878
1878
  "location_type": "opscode",
1879
- "location_path": "https://supermarket.getchef.com/api/v1",
1880
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.99.0/download",
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
1881
  "dependencies": {
1882
1882
  "openssl": ">= 0.0.0"
1883
1883
  }
1884
1884
  },
1885
1885
  "0.99.2": {
1886
1886
  "location_type": "opscode",
1887
- "location_path": "https://supermarket.getchef.com/api/v1",
1888
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.99.2/download",
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
1889
  "dependencies": {
1890
1890
  "openssl": ">= 0.0.0"
1891
1891
  }
1892
1892
  },
1893
1893
  "0.99.4": {
1894
1894
  "location_type": "opscode",
1895
- "location_path": "https://supermarket.getchef.com/api/v1",
1896
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.99.4/download",
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
1897
  "dependencies": {
1898
1898
  "openssl": ">= 0.0.0"
1899
1899
  }
1900
1900
  },
1901
1901
  "1.0.0": {
1902
1902
  "location_type": "opscode",
1903
- "location_path": "https://supermarket.getchef.com/api/v1",
1904
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/1.0.0/download",
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
1905
  "dependencies": {
1906
1906
  "openssl": ">= 0.0.0"
1907
1907
  }
1908
1908
  },
1909
1909
  "2.0.0": {
1910
1910
  "location_type": "opscode",
1911
- "location_path": "https://supermarket.getchef.com/api/v1",
1912
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.0.0/download",
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
1913
  "dependencies": {
1914
1914
  "openssl": ">= 0.0.0"
1915
1915
  }
1916
1916
  },
1917
1917
  "2.0.2": {
1918
1918
  "location_type": "opscode",
1919
- "location_path": "https://supermarket.getchef.com/api/v1",
1920
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.0.2/download",
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
1921
  "dependencies": {
1922
1922
  "openssl": ">= 0.0.0"
1923
1923
  }
1924
1924
  },
1925
1925
  "2.1.0": {
1926
1926
  "location_type": "opscode",
1927
- "location_path": "https://supermarket.getchef.com/api/v1",
1928
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.1.0/download",
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
1929
  "dependencies": {
1930
1930
  "openssl": ">= 0.0.0"
1931
1931
  }
1932
1932
  },
1933
1933
  "2.2.0": {
1934
1934
  "location_type": "opscode",
1935
- "location_path": "https://supermarket.getchef.com/api/v1",
1936
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.2.0/download",
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
1937
  "dependencies": {
1938
1938
  "openssl": ">= 0.0.0"
1939
1939
  }
1940
1940
  },
1941
1941
  "2.2.2": {
1942
1942
  "location_type": "opscode",
1943
- "location_path": "https://supermarket.getchef.com/api/v1",
1944
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.2.2/download",
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
1945
  "dependencies": {
1946
1946
  "openssl": ">= 0.0.0"
1947
1947
  }
1948
1948
  },
1949
1949
  "2.4.0": {
1950
1950
  "location_type": "opscode",
1951
- "location_path": "https://supermarket.getchef.com/api/v1",
1952
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/2.4.0/download",
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
1953
  "dependencies": {
1954
1954
  "apt": ">= 0.0.0",
1955
1955
  "build-essential": ">= 0.0.0",
@@ -1958,8 +1958,8 @@
1958
1958
  },
1959
1959
  "3.0.0": {
1960
1960
  "location_type": "opscode",
1961
- "location_path": "https://supermarket.getchef.com/api/v1",
1962
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.0.0/download",
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
1963
  "dependencies": {
1964
1964
  "apt": ">= 0.0.0",
1965
1965
  "build-essential": ">= 0.0.0",
@@ -1968,8 +1968,8 @@
1968
1968
  },
1969
1969
  "3.0.2": {
1970
1970
  "location_type": "opscode",
1971
- "location_path": "https://supermarket.getchef.com/api/v1",
1972
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.0.2/download",
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
1973
  "dependencies": {
1974
1974
  "apt": ">= 0.0.0",
1975
1975
  "build-essential": ">= 0.0.0",
@@ -1978,8 +1978,8 @@
1978
1978
  },
1979
1979
  "3.0.4": {
1980
1980
  "location_type": "opscode",
1981
- "location_path": "https://supermarket.getchef.com/api/v1",
1982
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.0.4/download",
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
1983
  "dependencies": {
1984
1984
  "apt": ">= 0.0.0",
1985
1985
  "build-essential": ">= 0.0.0",
@@ -1988,8 +1988,8 @@
1988
1988
  },
1989
1989
  "3.1.0": {
1990
1990
  "location_type": "opscode",
1991
- "location_path": "https://supermarket.getchef.com/api/v1",
1992
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.1.0/download",
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
1993
  "dependencies": {
1994
1994
  "apt": ">= 0.0.0",
1995
1995
  "build-essential": ">= 0.0.0",
@@ -1998,8 +1998,8 @@
1998
1998
  },
1999
1999
  "3.2.0": {
2000
2000
  "location_type": "opscode",
2001
- "location_path": "https://supermarket.getchef.com/api/v1",
2002
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.2.0/download",
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
2003
  "dependencies": {
2004
2004
  "apt": ">= 0.0.0",
2005
2005
  "build-essential": ">= 0.0.0",
@@ -2008,8 +2008,8 @@
2008
2008
  },
2009
2009
  "3.3.0": {
2010
2010
  "location_type": "opscode",
2011
- "location_path": "https://supermarket.getchef.com/api/v1",
2012
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.3.0/download",
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
2013
  "dependencies": {
2014
2014
  "apt": ">= 0.0.0",
2015
2015
  "build-essential": ">= 0.0.0",
@@ -2018,8 +2018,8 @@
2018
2018
  },
2019
2019
  "3.3.4": {
2020
2020
  "location_type": "opscode",
2021
- "location_path": "https://supermarket.getchef.com/api/v1",
2022
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.3.4/download",
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
2023
  "dependencies": {
2024
2024
  "apt": ">= 0.0.0",
2025
2025
  "build-essential": ">= 0.0.0",
@@ -2028,8 +2028,8 @@
2028
2028
  },
2029
2029
  "3.4.0": {
2030
2030
  "location_type": "opscode",
2031
- "location_path": "https://supermarket.getchef.com/api/v1",
2032
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.4.0/download",
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
2033
  "dependencies": {
2034
2034
  "apt": ">= 1.9.0",
2035
2035
  "build-essential": ">= 0.0.0",
@@ -2038,8 +2038,8 @@
2038
2038
  },
2039
2039
  "3.4.1": {
2040
2040
  "location_type": "opscode",
2041
- "location_path": "https://supermarket.getchef.com/api/v1",
2042
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/3.4.1/download",
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
2043
  "dependencies": {
2044
2044
  "apt": ">= 1.9.0",
2045
2045
  "build-essential": ">= 0.0.0",
@@ -2048,50 +2048,50 @@
2048
2048
  },
2049
2049
  "0.9.0": {
2050
2050
  "location_type": "opscode",
2051
- "location_path": "https://supermarket.getchef.com/api/v1",
2052
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.9.0/download",
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
2053
  "dependencies": {
2054
2054
  }
2055
2055
  },
2056
2056
  "0.10.0": {
2057
2057
  "location_type": "opscode",
2058
- "location_path": "https://supermarket.getchef.com/api/v1",
2059
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.10.0/download",
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
2060
  "dependencies": {
2061
2061
  }
2062
2062
  },
2063
2063
  "0.10.2": {
2064
2064
  "location_type": "opscode",
2065
- "location_path": "https://supermarket.getchef.com/api/v1",
2066
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.10.2/download",
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
2067
  "dependencies": {
2068
2068
  }
2069
2069
  },
2070
2070
  "0.10.1": {
2071
2071
  "location_type": "opscode",
2072
- "location_path": "https://supermarket.getchef.com/api/v1",
2073
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.10.1/download",
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
2074
  "dependencies": {
2075
2075
  }
2076
2076
  },
2077
2077
  "0.11.1": {
2078
2078
  "location_type": "opscode",
2079
- "location_path": "https://supermarket.getchef.com/api/v1",
2080
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.11.1/download",
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
2081
  "dependencies": {
2082
2082
  }
2083
2083
  },
2084
2084
  "0.11.0": {
2085
2085
  "location_type": "opscode",
2086
- "location_path": "https://supermarket.getchef.com/api/v1",
2087
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.11.0/download",
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
2088
  "dependencies": {
2089
2089
  }
2090
2090
  },
2091
2091
  "0.7.0": {
2092
2092
  "location_type": "opscode",
2093
- "location_path": "https://supermarket.getchef.com/api/v1",
2094
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/postgresql/versions/0.7.0/download",
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
2095
  "dependencies": {
2096
2096
  }
2097
2097
  }
@@ -2099,8 +2099,8 @@
2099
2099
  "apache2": {
2100
2100
  "1.9.0": {
2101
2101
  "location_type": "opscode",
2102
- "location_path": "https://supermarket.getchef.com/api/v1",
2103
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.9.0/download",
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
2104
  "dependencies": {
2105
2105
  "iptables": ">= 0.0.0",
2106
2106
  "logrotate": ">= 0.0.0",
@@ -2109,8 +2109,8 @@
2109
2109
  },
2110
2110
  "1.9.1": {
2111
2111
  "location_type": "opscode",
2112
- "location_path": "https://supermarket.getchef.com/api/v1",
2113
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.9.1/download",
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
2114
  "dependencies": {
2115
2115
  "iptables": ">= 0.0.0",
2116
2116
  "logrotate": ">= 0.0.0",
@@ -2119,8 +2119,8 @@
2119
2119
  },
2120
2120
  "1.9.4": {
2121
2121
  "location_type": "opscode",
2122
- "location_path": "https://supermarket.getchef.com/api/v1",
2123
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.9.4/download",
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
2124
  "dependencies": {
2125
2125
  "iptables": ">= 0.0.0",
2126
2126
  "logrotate": ">= 0.0.0",
@@ -2129,8 +2129,8 @@
2129
2129
  },
2130
2130
  "1.9.6": {
2131
2131
  "location_type": "opscode",
2132
- "location_path": "https://supermarket.getchef.com/api/v1",
2133
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.9.6/download",
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
2134
  "dependencies": {
2135
2135
  "iptables": ">= 0.0.0",
2136
2136
  "logrotate": ">= 0.0.0",
@@ -2139,8 +2139,8 @@
2139
2139
  },
2140
2140
  "1.10.0": {
2141
2141
  "location_type": "opscode",
2142
- "location_path": "https://supermarket.getchef.com/api/v1",
2143
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.10.0/download",
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
2144
  "dependencies": {
2145
2145
  "iptables": ">= 0.0.0",
2146
2146
  "logrotate": ">= 0.0.0",
@@ -2149,8 +2149,8 @@
2149
2149
  },
2150
2150
  "1.10.2": {
2151
2151
  "location_type": "opscode",
2152
- "location_path": "https://supermarket.getchef.com/api/v1",
2153
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.10.2/download",
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
2154
  "dependencies": {
2155
2155
  "iptables": ">= 0.0.0",
2156
2156
  "logrotate": ">= 0.0.0",
@@ -2159,8 +2159,8 @@
2159
2159
  },
2160
2160
  "1.10.4": {
2161
2161
  "location_type": "opscode",
2162
- "location_path": "https://supermarket.getchef.com/api/v1",
2163
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.10.4/download",
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
2164
  "dependencies": {
2165
2165
  "iptables": ">= 0.0.0",
2166
2166
  "logrotate": ">= 0.0.0",
@@ -2169,309 +2169,309 @@
2169
2169
  },
2170
2170
  "0.99.3": {
2171
2171
  "location_type": "opscode",
2172
- "location_path": "https://supermarket.getchef.com/api/v1",
2173
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.99.3/download",
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
2174
  "dependencies": {
2175
2175
  }
2176
2176
  },
2177
2177
  "1.1.16": {
2178
2178
  "location_type": "opscode",
2179
- "location_path": "https://supermarket.getchef.com/api/v1",
2180
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.16/download",
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
2181
  "dependencies": {
2182
2182
  }
2183
2183
  },
2184
2184
  "1.1.12": {
2185
2185
  "location_type": "opscode",
2186
- "location_path": "https://supermarket.getchef.com/api/v1",
2187
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.12/download",
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
2188
  "dependencies": {
2189
2189
  }
2190
2190
  },
2191
2191
  "0.12.2": {
2192
2192
  "location_type": "opscode",
2193
- "location_path": "https://supermarket.getchef.com/api/v1",
2194
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.12.2/download",
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
2195
  "dependencies": {
2196
2196
  }
2197
2197
  },
2198
2198
  "1.8.12": {
2199
2199
  "location_type": "opscode",
2200
- "location_path": "https://supermarket.getchef.com/api/v1",
2201
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.12/download",
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
2202
  "dependencies": {
2203
2203
  }
2204
2204
  },
2205
2205
  "1.8.10": {
2206
2206
  "location_type": "opscode",
2207
- "location_path": "https://supermarket.getchef.com/api/v1",
2208
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.10/download",
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
2209
  "dependencies": {
2210
2210
  }
2211
2211
  },
2212
2212
  "1.8.8": {
2213
2213
  "location_type": "opscode",
2214
- "location_path": "https://supermarket.getchef.com/api/v1",
2215
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.8/download",
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
2216
  "dependencies": {
2217
2217
  }
2218
2218
  },
2219
2219
  "1.8.0": {
2220
2220
  "location_type": "opscode",
2221
- "location_path": "https://supermarket.getchef.com/api/v1",
2222
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.0/download",
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
2223
  "dependencies": {
2224
2224
  }
2225
2225
  },
2226
2226
  "1.0.2": {
2227
2227
  "location_type": "opscode",
2228
- "location_path": "https://supermarket.getchef.com/api/v1",
2229
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.0.2/download",
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
2230
  "dependencies": {
2231
2231
  }
2232
2232
  },
2233
2233
  "0.11.0": {
2234
2234
  "location_type": "opscode",
2235
- "location_path": "https://supermarket.getchef.com/api/v1",
2236
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.11.0/download",
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
2237
  "dependencies": {
2238
2238
  }
2239
2239
  },
2240
2240
  "0.99.1": {
2241
2241
  "location_type": "opscode",
2242
- "location_path": "https://supermarket.getchef.com/api/v1",
2243
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.99.1/download",
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
2244
  "dependencies": {
2245
2245
  }
2246
2246
  },
2247
2247
  "0.12.3": {
2248
2248
  "location_type": "opscode",
2249
- "location_path": "https://supermarket.getchef.com/api/v1",
2250
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.12.3/download",
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
2251
  "dependencies": {
2252
2252
  }
2253
2253
  },
2254
2254
  "1.4.2": {
2255
2255
  "location_type": "opscode",
2256
- "location_path": "https://supermarket.getchef.com/api/v1",
2257
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.4.2/download",
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
2258
  "dependencies": {
2259
2259
  }
2260
2260
  },
2261
2261
  "1.3.2": {
2262
2262
  "location_type": "opscode",
2263
- "location_path": "https://supermarket.getchef.com/api/v1",
2264
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.3.2/download",
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
2265
  "dependencies": {
2266
2266
  }
2267
2267
  },
2268
2268
  "1.0.8": {
2269
2269
  "location_type": "opscode",
2270
- "location_path": "https://supermarket.getchef.com/api/v1",
2271
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.0.8/download",
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
2272
  "dependencies": {
2273
2273
  }
2274
2274
  },
2275
2275
  "0.10.0": {
2276
2276
  "location_type": "opscode",
2277
- "location_path": "https://supermarket.getchef.com/api/v1",
2278
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.10.0/download",
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
2279
  "dependencies": {
2280
2280
  }
2281
2281
  },
2282
2282
  "0.99.4": {
2283
2283
  "location_type": "opscode",
2284
- "location_path": "https://supermarket.getchef.com/api/v1",
2285
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.99.4/download",
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
2286
  "dependencies": {
2287
2287
  }
2288
2288
  },
2289
2289
  "1.0.0": {
2290
2290
  "location_type": "opscode",
2291
- "location_path": "https://supermarket.getchef.com/api/v1",
2292
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.0.0/download",
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
2293
  "dependencies": {
2294
2294
  }
2295
2295
  },
2296
2296
  "1.8.4": {
2297
2297
  "location_type": "opscode",
2298
- "location_path": "https://supermarket.getchef.com/api/v1",
2299
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.4/download",
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
2300
  "dependencies": {
2301
2301
  }
2302
2302
  },
2303
2303
  "0.12.1": {
2304
2304
  "location_type": "opscode",
2305
- "location_path": "https://supermarket.getchef.com/api/v1",
2306
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.12.1/download",
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
2307
  "dependencies": {
2308
2308
  }
2309
2309
  },
2310
2310
  "1.1.0": {
2311
2311
  "location_type": "opscode",
2312
- "location_path": "https://supermarket.getchef.com/api/v1",
2313
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.0/download",
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
2314
  "dependencies": {
2315
2315
  }
2316
2316
  },
2317
2317
  "1.6.2": {
2318
2318
  "location_type": "opscode",
2319
- "location_path": "https://supermarket.getchef.com/api/v1",
2320
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.6.2/download",
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
2321
  "dependencies": {
2322
2322
  }
2323
2323
  },
2324
2324
  "1.6.6": {
2325
2325
  "location_type": "opscode",
2326
- "location_path": "https://supermarket.getchef.com/api/v1",
2327
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.6.6/download",
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
2328
  "dependencies": {
2329
2329
  }
2330
2330
  },
2331
2331
  "1.0.4": {
2332
2332
  "location_type": "opscode",
2333
- "location_path": "https://supermarket.getchef.com/api/v1",
2334
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.0.4/download",
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
2335
  "dependencies": {
2336
2336
  }
2337
2337
  },
2338
2338
  "0.12.0": {
2339
2339
  "location_type": "opscode",
2340
- "location_path": "https://supermarket.getchef.com/api/v1",
2341
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.12.0/download",
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
2342
  "dependencies": {
2343
2343
  }
2344
2344
  },
2345
2345
  "0.9.1": {
2346
2346
  "location_type": "opscode",
2347
- "location_path": "https://supermarket.getchef.com/api/v1",
2348
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.9.1/download",
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
2349
  "dependencies": {
2350
2350
  }
2351
2351
  },
2352
2352
  "1.3.0": {
2353
2353
  "location_type": "opscode",
2354
- "location_path": "https://supermarket.getchef.com/api/v1",
2355
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.3.0/download",
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
2356
  "dependencies": {
2357
2357
  }
2358
2358
  },
2359
2359
  "1.6.0": {
2360
2360
  "location_type": "opscode",
2361
- "location_path": "https://supermarket.getchef.com/api/v1",
2362
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.6.0/download",
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
2363
  "dependencies": {
2364
2364
  }
2365
2365
  },
2366
2366
  "1.1.8": {
2367
2367
  "location_type": "opscode",
2368
- "location_path": "https://supermarket.getchef.com/api/v1",
2369
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.8/download",
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
2370
  "dependencies": {
2371
2371
  }
2372
2372
  },
2373
2373
  "0.10.1": {
2374
2374
  "location_type": "opscode",
2375
- "location_path": "https://supermarket.getchef.com/api/v1",
2376
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.10.1/download",
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
2377
  "dependencies": {
2378
2378
  }
2379
2379
  },
2380
2380
  "1.1.2": {
2381
2381
  "location_type": "opscode",
2382
- "location_path": "https://supermarket.getchef.com/api/v1",
2383
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.2/download",
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
2384
  "dependencies": {
2385
2385
  }
2386
2386
  },
2387
2387
  "1.5.0": {
2388
2388
  "location_type": "opscode",
2389
- "location_path": "https://supermarket.getchef.com/api/v1",
2390
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.5.0/download",
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
2391
  "dependencies": {
2392
2392
  }
2393
2393
  },
2394
2394
  "1.8.2": {
2395
2395
  "location_type": "opscode",
2396
- "location_path": "https://supermarket.getchef.com/api/v1",
2397
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.2/download",
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
2398
  "dependencies": {
2399
2399
  }
2400
2400
  },
2401
2401
  "1.8.6": {
2402
2402
  "location_type": "opscode",
2403
- "location_path": "https://supermarket.getchef.com/api/v1",
2404
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.6/download",
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
2405
  "dependencies": {
2406
2406
  }
2407
2407
  },
2408
2408
  "1.1.6": {
2409
2409
  "location_type": "opscode",
2410
- "location_path": "https://supermarket.getchef.com/api/v1",
2411
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.6/download",
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
2412
  "dependencies": {
2413
2413
  }
2414
2414
  },
2415
2415
  "1.8.14": {
2416
2416
  "location_type": "opscode",
2417
- "location_path": "https://supermarket.getchef.com/api/v1",
2418
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.8.14/download",
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
2419
  "dependencies": {
2420
2420
  }
2421
2421
  },
2422
2422
  "0.99.0": {
2423
2423
  "location_type": "opscode",
2424
- "location_path": "https://supermarket.getchef.com/api/v1",
2425
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.99.0/download",
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
2426
  "dependencies": {
2427
2427
  }
2428
2428
  },
2429
2429
  "1.1.4": {
2430
2430
  "location_type": "opscode",
2431
- "location_path": "https://supermarket.getchef.com/api/v1",
2432
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.4/download",
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
2433
  "dependencies": {
2434
2434
  }
2435
2435
  },
2436
2436
  "1.0.6": {
2437
2437
  "location_type": "opscode",
2438
- "location_path": "https://supermarket.getchef.com/api/v1",
2439
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.0.6/download",
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
2440
  "dependencies": {
2441
2441
  }
2442
2442
  },
2443
2443
  "0.99.2": {
2444
2444
  "location_type": "opscode",
2445
- "location_path": "https://supermarket.getchef.com/api/v1",
2446
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/0.99.2/download",
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
2447
  "dependencies": {
2448
2448
  }
2449
2449
  },
2450
2450
  "1.4.0": {
2451
2451
  "location_type": "opscode",
2452
- "location_path": "https://supermarket.getchef.com/api/v1",
2453
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.4.0/download",
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
2454
  "dependencies": {
2455
2455
  }
2456
2456
  },
2457
2457
  "1.2.0": {
2458
2458
  "location_type": "opscode",
2459
- "location_path": "https://supermarket.getchef.com/api/v1",
2460
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.2.0/download",
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
2461
  "dependencies": {
2462
2462
  }
2463
2463
  },
2464
2464
  "1.1.10": {
2465
2465
  "location_type": "opscode",
2466
- "location_path": "https://supermarket.getchef.com/api/v1",
2467
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.1.10/download",
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
2468
  "dependencies": {
2469
2469
  }
2470
2470
  },
2471
2471
  "1.7.0": {
2472
2472
  "location_type": "opscode",
2473
- "location_path": "https://supermarket.getchef.com/api/v1",
2474
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apache2/versions/1.7.0/download",
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
2475
  "dependencies": {
2476
2476
  }
2477
2477
  }
@@ -2479,267 +2479,267 @@
2479
2479
  "apt": {
2480
2480
  "1.6.0": {
2481
2481
  "location_type": "opscode",
2482
- "location_path": "https://supermarket.getchef.com/api/v1",
2483
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.6.0/download",
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
2484
  "dependencies": {
2485
2485
  }
2486
2486
  },
2487
2487
  "1.2.2": {
2488
2488
  "location_type": "opscode",
2489
- "location_path": "https://supermarket.getchef.com/api/v1",
2490
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.2.2/download",
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
2491
  "dependencies": {
2492
2492
  }
2493
2493
  },
2494
2494
  "0.9.3": {
2495
2495
  "location_type": "opscode",
2496
- "location_path": "https://supermarket.getchef.com/api/v1",
2497
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/0.9.3/download",
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
2498
  "dependencies": {
2499
2499
  }
2500
2500
  },
2501
2501
  "0.9.0": {
2502
2502
  "location_type": "opscode",
2503
- "location_path": "https://supermarket.getchef.com/api/v1",
2504
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/0.9.0/download",
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
2505
  "dependencies": {
2506
2506
  }
2507
2507
  },
2508
2508
  "1.10.0": {
2509
2509
  "location_type": "opscode",
2510
- "location_path": "https://supermarket.getchef.com/api/v1",
2511
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.10.0/download",
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
2512
  "dependencies": {
2513
2513
  }
2514
2514
  },
2515
2515
  "2.1.1": {
2516
2516
  "location_type": "opscode",
2517
- "location_path": "https://supermarket.getchef.com/api/v1",
2518
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.1.1/download",
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
2519
  "dependencies": {
2520
2520
  }
2521
2521
  },
2522
2522
  "1.5.0": {
2523
2523
  "location_type": "opscode",
2524
- "location_path": "https://supermarket.getchef.com/api/v1",
2525
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.5.0/download",
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
2526
  "dependencies": {
2527
2527
  }
2528
2528
  },
2529
2529
  "1.8.2": {
2530
2530
  "location_type": "opscode",
2531
- "location_path": "https://supermarket.getchef.com/api/v1",
2532
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.8.2/download",
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
2533
  "dependencies": {
2534
2534
  }
2535
2535
  },
2536
2536
  "2.1.2": {
2537
2537
  "location_type": "opscode",
2538
- "location_path": "https://supermarket.getchef.com/api/v1",
2539
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.1.2/download",
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
2540
  "dependencies": {
2541
2541
  }
2542
2542
  },
2543
2543
  "1.4.6": {
2544
2544
  "location_type": "opscode",
2545
- "location_path": "https://supermarket.getchef.com/api/v1",
2546
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.4.6/download",
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
2547
  "dependencies": {
2548
2548
  }
2549
2549
  },
2550
2550
  "1.4.2": {
2551
2551
  "location_type": "opscode",
2552
- "location_path": "https://supermarket.getchef.com/api/v1",
2553
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.4.2/download",
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
2554
  "dependencies": {
2555
2555
  }
2556
2556
  },
2557
2557
  "2.2.0": {
2558
2558
  "location_type": "opscode",
2559
- "location_path": "https://supermarket.getchef.com/api/v1",
2560
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.2.0/download",
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
2561
  "dependencies": {
2562
2562
  }
2563
2563
  },
2564
2564
  "1.1.2": {
2565
2565
  "location_type": "opscode",
2566
- "location_path": "https://supermarket.getchef.com/api/v1",
2567
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.1.2/download",
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
2568
  "dependencies": {
2569
2569
  }
2570
2570
  },
2571
2571
  "2.4.0": {
2572
2572
  "location_type": "opscode",
2573
- "location_path": "https://supermarket.getchef.com/api/v1",
2574
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.4.0/download",
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
2575
  "dependencies": {
2576
2576
  }
2577
2577
  },
2578
2578
  "1.3.0": {
2579
2579
  "location_type": "opscode",
2580
- "location_path": "https://supermarket.getchef.com/api/v1",
2581
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.3.0/download",
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
2582
  "dependencies": {
2583
2583
  }
2584
2584
  },
2585
2585
  "2.3.10": {
2586
2586
  "location_type": "opscode",
2587
- "location_path": "https://supermarket.getchef.com/api/v1",
2588
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.3.10/download",
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
2589
  "dependencies": {
2590
2590
  }
2591
2591
  },
2592
2592
  "2.0.0": {
2593
2593
  "location_type": "opscode",
2594
- "location_path": "https://supermarket.getchef.com/api/v1",
2595
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.0.0/download",
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
2596
  "dependencies": {
2597
2597
  }
2598
2598
  },
2599
2599
  "1.8.0": {
2600
2600
  "location_type": "opscode",
2601
- "location_path": "https://supermarket.getchef.com/api/v1",
2602
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.8.0/download",
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
2603
  "dependencies": {
2604
2604
  }
2605
2605
  },
2606
2606
  "1.4.4": {
2607
2607
  "location_type": "opscode",
2608
- "location_path": "https://supermarket.getchef.com/api/v1",
2609
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.4.4/download",
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
2610
  "dependencies": {
2611
2611
  }
2612
2612
  },
2613
2613
  "2.3.6": {
2614
2614
  "location_type": "opscode",
2615
- "location_path": "https://supermarket.getchef.com/api/v1",
2616
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.3.6/download",
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
2617
  "dependencies": {
2618
2618
  }
2619
2619
  },
2620
2620
  "2.2.1": {
2621
2621
  "location_type": "opscode",
2622
- "location_path": "https://supermarket.getchef.com/api/v1",
2623
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.2.1/download",
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
2624
  "dependencies": {
2625
2625
  }
2626
2626
  },
2627
2627
  "1.3.2": {
2628
2628
  "location_type": "opscode",
2629
- "location_path": "https://supermarket.getchef.com/api/v1",
2630
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.3.2/download",
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
2631
  "dependencies": {
2632
2632
  }
2633
2633
  },
2634
2634
  "1.8.4": {
2635
2635
  "location_type": "opscode",
2636
- "location_path": "https://supermarket.getchef.com/api/v1",
2637
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.8.4/download",
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
2638
  "dependencies": {
2639
2639
  }
2640
2640
  },
2641
2641
  "1.4.0": {
2642
2642
  "location_type": "opscode",
2643
- "location_path": "https://supermarket.getchef.com/api/v1",
2644
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.4.0/download",
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
2645
  "dependencies": {
2646
2646
  }
2647
2647
  },
2648
2648
  "2.3.4": {
2649
2649
  "location_type": "opscode",
2650
- "location_path": "https://supermarket.getchef.com/api/v1",
2651
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.3.4/download",
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
2652
  "dependencies": {
2653
2653
  }
2654
2654
  },
2655
2655
  "2.3.0": {
2656
2656
  "location_type": "opscode",
2657
- "location_path": "https://supermarket.getchef.com/api/v1",
2658
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.3.0/download",
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
2659
  "dependencies": {
2660
2660
  }
2661
2661
  },
2662
2662
  "1.7.0": {
2663
2663
  "location_type": "opscode",
2664
- "location_path": "https://supermarket.getchef.com/api/v1",
2665
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.7.0/download",
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
2666
  "dependencies": {
2667
2667
  }
2668
2668
  },
2669
2669
  "2.3.8": {
2670
2670
  "location_type": "opscode",
2671
- "location_path": "https://supermarket.getchef.com/api/v1",
2672
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.3.8/download",
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
2673
  "dependencies": {
2674
2674
  }
2675
2675
  },
2676
2676
  "0.9.2": {
2677
2677
  "location_type": "opscode",
2678
- "location_path": "https://supermarket.getchef.com/api/v1",
2679
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/0.9.2/download",
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
2680
  "dependencies": {
2681
2681
  }
2682
2682
  },
2683
2683
  "1.1.1": {
2684
2684
  "location_type": "opscode",
2685
- "location_path": "https://supermarket.getchef.com/api/v1",
2686
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.1.1/download",
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
2687
  "dependencies": {
2688
2688
  }
2689
2689
  },
2690
2690
  "1.0.0": {
2691
2691
  "location_type": "opscode",
2692
- "location_path": "https://supermarket.getchef.com/api/v1",
2693
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.0.0/download",
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
2694
  "dependencies": {
2695
2695
  }
2696
2696
  },
2697
2697
  "0.8.0": {
2698
2698
  "location_type": "opscode",
2699
- "location_path": "https://supermarket.getchef.com/api/v1",
2700
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/0.8.0/download",
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
2701
  "dependencies": {
2702
2702
  }
2703
2703
  },
2704
2704
  "2.1.0": {
2705
2705
  "location_type": "opscode",
2706
- "location_path": "https://supermarket.getchef.com/api/v1",
2707
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/2.1.0/download",
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
2708
  "dependencies": {
2709
2709
  }
2710
2710
  },
2711
2711
  "1.2.0": {
2712
2712
  "location_type": "opscode",
2713
- "location_path": "https://supermarket.getchef.com/api/v1",
2714
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.2.0/download",
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
2715
  "dependencies": {
2716
2716
  }
2717
2717
  },
2718
2718
  "1.9.0": {
2719
2719
  "location_type": "opscode",
2720
- "location_path": "https://supermarket.getchef.com/api/v1",
2721
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.9.0/download",
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
2722
  "dependencies": {
2723
2723
  }
2724
2724
  },
2725
2725
  "1.9.2": {
2726
2726
  "location_type": "opscode",
2727
- "location_path": "https://supermarket.getchef.com/api/v1",
2728
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.9.2/download",
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
2729
  "dependencies": {
2730
2730
  }
2731
2731
  },
2732
2732
  "1.1.0": {
2733
2733
  "location_type": "opscode",
2734
- "location_path": "https://supermarket.getchef.com/api/v1",
2735
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.1.0/download",
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
2736
  "dependencies": {
2737
2737
  }
2738
2738
  },
2739
2739
  "1.4.8": {
2740
2740
  "location_type": "opscode",
2741
- "location_path": "https://supermarket.getchef.com/api/v1",
2742
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/apt/versions/1.4.8/download",
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
2743
  "dependencies": {
2744
2744
  }
2745
2745
  }
@@ -2747,241 +2747,241 @@
2747
2747
  "yum": {
2748
2748
  "3.1.2": {
2749
2749
  "location_type": "opscode",
2750
- "location_path": "https://supermarket.getchef.com/api/v1",
2751
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.1.2/download",
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
2752
  "dependencies": {
2753
2753
  }
2754
2754
  },
2755
2755
  "2.3.4": {
2756
2756
  "location_type": "opscode",
2757
- "location_path": "https://supermarket.getchef.com/api/v1",
2758
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.3.4/download",
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
2759
  "dependencies": {
2760
2760
  }
2761
2761
  },
2762
2762
  "0.6.2": {
2763
2763
  "location_type": "opscode",
2764
- "location_path": "https://supermarket.getchef.com/api/v1",
2765
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.6.2/download",
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
2766
  "dependencies": {
2767
2767
  }
2768
2768
  },
2769
2769
  "3.2.0": {
2770
2770
  "location_type": "opscode",
2771
- "location_path": "https://supermarket.getchef.com/api/v1",
2772
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.2.0/download",
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
2773
  "dependencies": {
2774
2774
  }
2775
2775
  },
2776
2776
  "2.2.0": {
2777
2777
  "location_type": "opscode",
2778
- "location_path": "https://supermarket.getchef.com/api/v1",
2779
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.2.0/download",
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
2780
  "dependencies": {
2781
2781
  }
2782
2782
  },
2783
2783
  "2.4.4": {
2784
2784
  "location_type": "opscode",
2785
- "location_path": "https://supermarket.getchef.com/api/v1",
2786
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.4.4/download",
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
2787
  "dependencies": {
2788
2788
  }
2789
2789
  },
2790
2790
  "2.4.0": {
2791
2791
  "location_type": "opscode",
2792
- "location_path": "https://supermarket.getchef.com/api/v1",
2793
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.4.0/download",
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
2794
  "dependencies": {
2795
2795
  }
2796
2796
  },
2797
2797
  "3.1.6": {
2798
2798
  "location_type": "opscode",
2799
- "location_path": "https://supermarket.getchef.com/api/v1",
2800
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.1.6/download",
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
2801
  "dependencies": {
2802
2802
  }
2803
2803
  },
2804
2804
  "2.3.0": {
2805
2805
  "location_type": "opscode",
2806
- "location_path": "https://supermarket.getchef.com/api/v1",
2807
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.3.0/download",
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
2808
  "dependencies": {
2809
2809
  }
2810
2810
  },
2811
2811
  "2.2.2": {
2812
2812
  "location_type": "opscode",
2813
- "location_path": "https://supermarket.getchef.com/api/v1",
2814
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.2.2/download",
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
2815
  "dependencies": {
2816
2816
  }
2817
2817
  },
2818
2818
  "0.5.2": {
2819
2819
  "location_type": "opscode",
2820
- "location_path": "https://supermarket.getchef.com/api/v1",
2821
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.5.2/download",
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
2822
  "dependencies": {
2823
2823
  }
2824
2824
  },
2825
2825
  "0.1.1": {
2826
2826
  "location_type": "opscode",
2827
- "location_path": "https://supermarket.getchef.com/api/v1",
2828
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.1.1/download",
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
2829
  "dependencies": {
2830
2830
  }
2831
2831
  },
2832
2832
  "0.5.0": {
2833
2833
  "location_type": "opscode",
2834
- "location_path": "https://supermarket.getchef.com/api/v1",
2835
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.5.0/download",
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
2836
  "dependencies": {
2837
2837
  }
2838
2838
  },
2839
2839
  "0.6.0": {
2840
2840
  "location_type": "opscode",
2841
- "location_path": "https://supermarket.getchef.com/api/v1",
2842
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.6.0/download",
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
2843
  "dependencies": {
2844
2844
  }
2845
2845
  },
2846
2846
  "0.8.0": {
2847
2847
  "location_type": "opscode",
2848
- "location_path": "https://supermarket.getchef.com/api/v1",
2849
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.8.0/download",
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
2850
  "dependencies": {
2851
2851
  }
2852
2852
  },
2853
2853
  "3.0.0": {
2854
2854
  "location_type": "opscode",
2855
- "location_path": "https://supermarket.getchef.com/api/v1",
2856
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.0.0/download",
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
2857
  "dependencies": {
2858
2858
  }
2859
2859
  },
2860
2860
  "2.3.2": {
2861
2861
  "location_type": "opscode",
2862
- "location_path": "https://supermarket.getchef.com/api/v1",
2863
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.3.2/download",
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
2864
  "dependencies": {
2865
2865
  }
2866
2866
  },
2867
2867
  "0.1.0": {
2868
2868
  "location_type": "opscode",
2869
- "location_path": "https://supermarket.getchef.com/api/v1",
2870
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.1.0/download",
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
2871
  "dependencies": {
2872
2872
  }
2873
2873
  },
2874
2874
  "2.0.0": {
2875
2875
  "location_type": "opscode",
2876
- "location_path": "https://supermarket.getchef.com/api/v1",
2877
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.0.0/download",
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
2878
  "dependencies": {
2879
2879
  }
2880
2880
  },
2881
2881
  "3.0.6": {
2882
2882
  "location_type": "opscode",
2883
- "location_path": "https://supermarket.getchef.com/api/v1",
2884
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.0.6/download",
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
2885
  "dependencies": {
2886
2886
  }
2887
2887
  },
2888
2888
  "2.0.2": {
2889
2889
  "location_type": "opscode",
2890
- "location_path": "https://supermarket.getchef.com/api/v1",
2891
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.0.2/download",
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
2892
  "dependencies": {
2893
2893
  }
2894
2894
  },
2895
2895
  "0.1.2": {
2896
2896
  "location_type": "opscode",
2897
- "location_path": "https://supermarket.getchef.com/api/v1",
2898
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.1.2/download",
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
2899
  "dependencies": {
2900
2900
  }
2901
2901
  },
2902
2902
  "2.1.0": {
2903
2903
  "location_type": "opscode",
2904
- "location_path": "https://supermarket.getchef.com/api/v1",
2905
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.1.0/download",
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
2906
  "dependencies": {
2907
2907
  }
2908
2908
  },
2909
2909
  "3.0.2": {
2910
2910
  "location_type": "opscode",
2911
- "location_path": "https://supermarket.getchef.com/api/v1",
2912
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.0.2/download",
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
2913
  "dependencies": {
2914
2914
  }
2915
2915
  },
2916
2916
  "2.0.6": {
2917
2917
  "location_type": "opscode",
2918
- "location_path": "https://supermarket.getchef.com/api/v1",
2919
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.0.6/download",
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
2920
  "dependencies": {
2921
2921
  }
2922
2922
  },
2923
2923
  "1.0.0": {
2924
2924
  "location_type": "opscode",
2925
- "location_path": "https://supermarket.getchef.com/api/v1",
2926
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/1.0.0/download",
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
2927
  "dependencies": {
2928
2928
  }
2929
2929
  },
2930
2930
  "3.0.4": {
2931
2931
  "location_type": "opscode",
2932
- "location_path": "https://supermarket.getchef.com/api/v1",
2933
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.0.4/download",
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
2934
  "dependencies": {
2935
2935
  }
2936
2936
  },
2937
2937
  "2.4.2": {
2938
2938
  "location_type": "opscode",
2939
- "location_path": "https://supermarket.getchef.com/api/v1",
2940
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.4.2/download",
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
2941
  "dependencies": {
2942
2942
  }
2943
2943
  },
2944
2944
  "3.1.4": {
2945
2945
  "location_type": "opscode",
2946
- "location_path": "https://supermarket.getchef.com/api/v1",
2947
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.1.4/download",
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
2948
  "dependencies": {
2949
2949
  }
2950
2950
  },
2951
2951
  "3.1.0": {
2952
2952
  "location_type": "opscode",
2953
- "location_path": "https://supermarket.getchef.com/api/v1",
2954
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.1.0/download",
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
2955
  "dependencies": {
2956
2956
  }
2957
2957
  },
2958
2958
  "2.0.4": {
2959
2959
  "location_type": "opscode",
2960
- "location_path": "https://supermarket.getchef.com/api/v1",
2961
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.0.4/download",
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
2962
  "dependencies": {
2963
2963
  }
2964
2964
  },
2965
2965
  "0.8.2": {
2966
2966
  "location_type": "opscode",
2967
- "location_path": "https://supermarket.getchef.com/api/v1",
2968
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/0.8.2/download",
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
2969
  "dependencies": {
2970
2970
  }
2971
2971
  },
2972
2972
  "3.2.2": {
2973
2973
  "location_type": "opscode",
2974
- "location_path": "https://supermarket.getchef.com/api/v1",
2975
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/3.2.2/download",
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
2976
  "dependencies": {
2977
2977
  }
2978
2978
  },
2979
2979
  "2.2.4": {
2980
2980
  "location_type": "opscode",
2981
- "location_path": "https://supermarket.getchef.com/api/v1",
2982
- "download_url": "https://supermarket.getchef.com/api/v1/cookbooks/yum/versions/2.2.4/download",
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
2983
  "dependencies": {
2984
2984
  }
2985
2985
  }
2986
2986
  }
2987
- }
2987
+ }