Update to use a newer and better OMNIBUS_URL

This is minor change which uses the new Chef (company) top
level domain for grabbing the Omnibus installation shell script.
This commit is contained in:
Joshua Harlow 2014-11-22 12:41:31 -08:00
commit c0f8ef0e76
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,7 @@
- Be more tolerant of ssh keys passed into 'ssh_authorized_keys'; allowing
for list, tuple, set, dict, string types and warning on other unexpected
types
- Update to use newer/better OMNIBUS_URL for chef module
0.7.6:
- open 0.7.6
- Enable vendordata on CloudSigma datasource (LP: #1303986)

View File

@ -90,7 +90,8 @@ REQUIRED_CHEF_DIRS = tuple([
'/etc/chef',
])
OMNIBUS_URL = "https://www.opscode.com/chef/install.sh"
# Used if fetching chef from a omnibus style package
OMNIBUS_URL = "https://www.getchef.com/chef/install.sh"
OMNIBUS_URL_RETRIES = 5
CHEF_VALIDATION_PEM_PATH = '/etc/chef/validation.pem'