Class: Facts::Openbsd::SshfpAlgorithm
- Inherits:
 - 
      Object
      
        
- Object
 - Facts::Openbsd::SshfpAlgorithm
 
 
- Defined in:
 - lib/facter/facts/openbsd/sshfp_algorithm.rb
 
Constant Summary collapse
- FACT_NAME =
 'sshfp_.*'- TYPE =
 :legacy
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
      9 10 11 12 13 14 15 16 17  | 
    
      # File 'lib/facter/facts/openbsd/sshfp_algorithm.rb', line 9 def call_the_resolver facts = [] result = Facter::Resolvers::Ssh.resolve(:ssh) result.each do |ssh| facts << Facter::ResolvedFact.new("sshfp_#{ssh.name.to_sym}", "#{ssh.fingerprint.sha1}\n#{ssh.fingerprint.sha256}", :legacy) end facts end  |