class Facts::Solaris::Sshalgorithmkey

Constants

FACT_NAME
TYPE

Public Instance Methods

call_the_resolver() click to toggle source
# File lib/facter/facts/solaris/sshalgorithmkey.rb, line 8
def call_the_resolver
  facts = []
  result = Facter::Resolvers::SshResolver.resolve(:ssh)
  result.each { |ssh| facts << Facter::ResolvedFact.new("ssh#{ssh.name.to_sym}key", ssh.key, :legacy) }
  facts
end