class Facts::Macosx::Sshalgorithmkey

Constants

FACT_NAME
TYPE

Public Instance Methods

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