Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
class AddLookupValueMatchToHostAndHostgroup < ActiveRecord::Migration
def up
add_column :hosts, :lookup_value_matcher, :string
add_column :hostgroups, :lookup_value_matcher, :string
Host::Managed.reset_column_information
Hostgroup.reset_column_information

matchers = LookupValue.where("lookup_values.match like ?", "fqdn=%").uniq.pluck('lookup_values.match')
fqdns = matchers.map{|m| m.gsub(/^fqdn=/, "")}
hostnames = fqdns.map{|fqdn| fqdn.split(".").first}
if SETTINGS[:unattended]
hosts = Host::Managed.where(:nics => {:name => (fqdns + hostnames)}).joins(:primary_interface)
else
fact_name_id = FactName.where(:name => "fqdn").first.id
hosts = Host::Managed.joins(:fact_values).where(:fact_values => {:fact_name_id => fact_name_id, :value => (fqdns + hostnames)})
end

hosts = hosts.readonly(false).uniq

hosts.each do |host|
host.update_attribute(:lookup_value_matcher, host.send(:lookup_value_match))
end

Hostgroup.find_in_batches(:batch_size => 100) do |group|
group.each do |hostgroup|
hostgroup.update_attribute(:lookup_value_matcher, hostgroup.send(:lookup_value_match))
end
end
end

def down
remove_column :hosts, :lookup_value_matcher
remove_column :hostgroups, :lookup_value_matcher
end
end
(286-286/286)