diff options
author | Tim Smith <tsmith84@gmail.com> | 2015-09-26 23:47:05 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2015-09-27 11:37:05 -0700 |
commit | d3b7dd925597dbeedafb2e65b1fd10ffc5b60d22 (patch) | |
tree | e4cad0e0be947705844faf17db0389c29753b8db | |
parent | def9260537b44c4c96c4323ced46d12b300e8b74 (diff) | |
download | chef-d3b7dd925597dbeedafb2e65b1fd10ffc5b60d22.tar.gz |
More Community site -> Supermarket
-rw-r--r-- | lib/chef/knife/cookbook_site_share.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/knife/cookbook_site_share.rb b/lib/chef/knife/cookbook_site_share.rb index 8f4cf3a5b3..b0f7f50e4d 100644 --- a/lib/chef/knife/cookbook_site_share.rb +++ b/lib/chef/knife/cookbook_site_share.rb @@ -108,15 +108,15 @@ class Chef def get_category(cookbook_name) begin - data = noauth_rest.get_rest("http://cookbooks.opscode.com/api/v1/cookbooks/#{@name_args[0]}") + data = noauth_rest.get_rest("https://supermarket.chef.io/api/v1/cookbooks/#{@name_args[0]}") if !data["category"] && data["error_code"] - ui.fatal("Received an error from the Opscode Cookbook site: #{data["error_code"]}. On the first time you upload it, you are required to specify the category you want to share this cookbook to.") + ui.fatal("Received an error from the Supermarket site: #{data["error_code"]}. On the first time you upload it, you are required to specify the category you want to share this cookbook to.") exit(1) else data['category'] end rescue => e - ui.fatal("Unable to reach Opscode Cookbook Site: #{e.message}. Increase log verbosity (-VV) for more information.") + ui.fatal("Unable to reach Supermarket site: #{e.message}. Increase log verbosity (-VV) for more information.") Chef::Log.debug("\n#{e.backtrace.join("\n")}") exit(1) end @@ -136,7 +136,7 @@ class Chef if http_resp.code.to_i != 201 if res['error_messages'] if res['error_messages'][0] =~ /Version already exists/ - ui.error "The same version of this cookbook already exists on the Opscode Cookbook Site." + ui.error "The same version of this cookbook already exists on Supermarket." exit(1) else ui.error "#{res['error_messages'][0]}" |