Actions
Bug #1566
closedPuppet CA set incorrectly when only one proxy is defined
Description
This is related to the way a combo-box defaults to "blank" even when there is only one valid option. Because we hide the rendering of the combobox when there is only one puppet proxy, it can't be set to the right value.
Need to investigate why the proxy isn't being set to the only valid option when there's only one proxy.
Updated by Greg Sutcliffe over 12 years ago
You can work around this with this patch:
diff --git a/app/helpers/hosts_and_hostgroups_helper.rb b/app/helpers/hosts_and_hostgroups_ index d03c609..885a2e7 100644 --- a/app/helpers/hosts_and_hostgroups_helper.rb +++ b/app/helpers/hosts_and_hostgroups_helper.rb @@ -63,7 +63,7 @@ module HostsAndHostgroupsHelper ca = SmartProxy.joins(:features).where(:features => { :name => "Puppet CA" }) proxies = SmartProxy.joins(:features).where(:features => { :name => "Puppet" }) # do not show the ca proxy, if we have only one of those and its the same as the puppe - fields = puppet_ca(f) unless ca.count == 1 and ca.map(&:id) == proxies.map(&:id) + fields = puppet_ca(f) unless ca.count == 0 and ca.map(&:id) == proxies.map(&:id) "#{fields} #{puppet_master(f)}".html_safe end
Although you'll have to edit your hosts again :(
Updated by Ohad Levy over 12 years ago
- Category set to Host creation
- Target version set to 1.0
Updated by Ohad Levy over 12 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset abc126551b89739f7dd714fe053ad8089848b93a.
Actions