diff options
author | Mark Harrison <mark@mivok.net> | 2019-01-29 15:17:48 -0500 |
---|---|---|
committer | Mark Harrison <mark@mivok.net> | 2019-01-29 15:23:29 -0500 |
commit | a5b42a4a9af44cce918fa7627cb0a24c16afc20b (patch) | |
tree | 063c60e186c71b6c729b3428ab38cd66cbdf9fdd /lib/chef/knife/bootstrap | |
parent | 74b0b661f5cdc127c9209e8d24926093582dcc97 (diff) | |
download | chef-a5b42a4a9af44cce918fa7627cb0a24c16afc20b.tar.gz |
Update knife bootstrap template to use up to date omnitruck URL
omnitruck-direct.chef.io is a legacy URL that now points to the same
place as omnitruck.chef.io, and was originally in place to support
clients with older SSL libraries. However, the backward compatible
behavior of omnitruck-direct hasn't been the case for a while now. This
change just corrects the URL in the bootstrap template also.
Signed-off-by: Mark Harrison <mark@mivok.net>
Diffstat (limited to 'lib/chef/knife/bootstrap')
-rw-r--r-- | lib/chef/knife/bootstrap/templates/chef-full.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/bootstrap/templates/chef-full.erb b/lib/chef/knife/bootstrap/templates/chef-full.erb index c80a3aa4ff..094cca1c08 100644 --- a/lib/chef/knife/bootstrap/templates/chef-full.erb +++ b/lib/chef/knife/bootstrap/templates/chef-full.erb @@ -171,7 +171,7 @@ do_download() { <% if knife_config[:bootstrap_install_command] %> <%= knife_config[:bootstrap_install_command] %> <% else %> - install_sh="<%= knife_config[:bootstrap_url] ? knife_config[:bootstrap_url] : "https://omnitruck-direct.chef.io/chef/install.sh" %>" + install_sh="<%= knife_config[:bootstrap_url] ? knife_config[:bootstrap_url] : "https://omnitruck.chef.io/chef/install.sh" %>" if test -f /usr/bin/chef-client; then echo "-----> Existing Chef installation detected" else |