lib/resolvers/ssh_resolver.rb
# frozen_string_literal: true
module Facter
module Resolvers
class SshResolver < BaseResolver
@log = Facter::Log.new(self)
@semaphore = Mutex.new
@fact_list ||= {}
@file_names = %w[ssh_host_rsa_key.pub ssh_host_dsa_key.pub ssh_host_ecdsa_key.pub ssh_host_ed25519_key.pub]
@file_paths = %w[/etc/ssh /usr/local/etc/ssh /etc /usr/local/etc /etc/opt/ssh]
class << self
private
def post_resolve(fact_name)
@fact_list.fetch(fact_name) { retrieve_info(fact_name) }
end
def retrieve_info(fact_name)
ssh_list = []
@file_paths.each do |file_path|
next unless File.directory?(file_path)
@file_names.each do |file_name|
file_content = Util::FileHelper.safe_read(File.join(file_path, file_name), nil)
next unless file_content
key_type, key = file_content.split(' ')
ssh_list << ::Resolvers::Utils::SshHelper.create_ssh(key_type, key)
end
end
@fact_list[:ssh] = ssh_list
@fact_list[fact_name]
end
end
end
end
end