You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Chef Server Downloads site for Ubuntu only lists 10.04 (lucid), 12.04 (precise) and 14.04 (trusty) so the ubuntu_supported_codenames attribute defined in the code linked below should be set to %w{lucid precise trusty}.
The current value of %w{lucid natty precise} is causing people using chef-server-ctl install on Ubuntu 14.04 to fallback to the lucid repository, as seen in the code linked below, which ultimately results in the wrong add on package to be installed in some cases.
The Chef Server Downloads site for Ubuntu only lists 10.04 (lucid), 12.04 (precise) and 14.04 (trusty) so the
ubuntu_supported_codenames
attribute defined in the code linked below should be set to%w{lucid precise trusty}
.https://github.com/chef/chef-server/blob/12.4.1/omnibus/files/private-chef-cookbooks/private-chef/attributes/default.rb#L55-L56
The current value of
%w{lucid natty precise}
is causing people usingchef-server-ctl install
on Ubuntu 14.04 to fallback to the lucid repository, as seen in the code linked below, which ultimately results in the wrong add on package to be installed in some cases.https://github.com/chef/chef-server/blob/12.4.1/omnibus/files/private-chef-cookbooks/private-chef/recipes/add_ons_repository.rb#L18
An example of a problematic package
vs.
Note that apt wants to "upgrade" to the "rc" package.
The text was updated successfully, but these errors were encountered: