Sha256: e4c51f50a6f42f6e37187d4d31ad35184ea10d39dc84a18e78858d9922a36659

Contents?: true

Size: 500 Bytes

Versions: 5

Compression:

Stored size: 500 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Openbsd
    class SshfpAlgorithm
      FACT_NAME = 'sshfp_.*'
      TYPE = :legacy

      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
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
facter-4.10.0 lib/facter/facts/openbsd/sshfp_algorithm.rb
facter-4.9.0 lib/facter/facts/openbsd/sshfp_algorithm.rb
facter-4.8.0 lib/facter/facts/openbsd/sshfp_algorithm.rb
facter-4.7.1 lib/facter/facts/openbsd/sshfp_algorithm.rb
facter-4.7.0 lib/facter/facts/openbsd/sshfp_algorithm.rb