-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates the chef provisioner to allow specifying a channel #17355
Updates the chef provisioner to allow specifying a channel #17355
Conversation
This also updates the omnitruck url to the current url. Signed-off-by: Scott Hain <shain@chef.io>
@@ -120,7 +120,26 @@ func TestResourceProvider_linuxInstallChefClient(t *testing.T) { | |||
|
|||
Commands: map[string]bool{ | |||
"curl -LO https://www.chef.io/chef/install.sh": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should update this URL to be https://omnitruck.chef.io/install.sh
(along with all other spots www.chef.io
is being used in test and no-test files).
@@ -11,7 +11,7 @@ import ( | |||
|
|||
const ( | |||
chmod = "find %s -maxdepth 1 -type f -exec /bin/chmod %d {} +" | |||
installURL = "https://www.chef.io/chef/install.sh" | |||
installURL = "https://omnitruck.chef.io/chef/install.sh" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop the chef
in this URL...we just want to use https://omnitruck.chef.io/install.sh
, more details at https://docs.chef.io/packages.html#omnitruck-install-script-options
396cd84
to
6d8152a
Compare
6d8152a
to
ec96de2
Compare
Signed-off-by: Scott Hain <shain@chef.io>
ec96de2
to
7bab1e4
Compare
Hey folks - any chance we could get an ETA on merging this? Thanks in advance! |
Thanks for this one @scotthain! LGTM and it also fixes PR #17020, so here goes... |
* Updates the chef provisioner to allow specifying a channel This also updates the omnitruck url to the current url. Signed-off-by: Scott Hain <shain@chef.io> * Update omnitruck URL Signed-off-by: Scott Hain <shain@chef.io>
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This also updates the omnitruck url to the current url.
Signed-off-by: Scott Hain shain@chef.io