Sha256: f73db991441082d9e02578d69aae668fe686c9513ea27a72d3528940dbd0f037

Contents?: true

Size: 699 Bytes

Versions: 12

Compression:

Stored size: 699 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Aix
    class Ssh
      FACT_NAME = 'ssh'

      def call_the_resolver
        Facter::ResolvedFact.new(FACT_NAME, fact_value)
      end

      private

      def fact_value
        resolver_data.map { |el| create_ssh_fact(el) }.inject(:merge)
      end

      def resolver_data
        Facter::Resolvers::SshResolver.resolve(:ssh)
      end

      def create_ssh_fact(ssh)
        return {} unless ssh

        { ssh.name.to_sym => {
          fingerprints: {
            sha1: ssh.fingerprint.sha1,
            sha256: ssh.fingerprint.sha256
          },
          key: ssh.key,
          type: ssh.type
        } }
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
facter-4.0.47 lib/facter/facts/aix/ssh.rb
facter-4.0.46 lib/facter/facts/aix/ssh.rb
facter-4.0.44 lib/facter/facts/aix/ssh.rb
facter-4.0.43 lib/facter/facts/aix/ssh.rb
facter-4.0.42 lib/facter/facts/aix/ssh.rb
facter-4.0.41 lib/facter/facts/aix/ssh.rb
facter-4.0.40 lib/facter/facts/aix/ssh.rb
facter-4.0.39 lib/facter/facts/aix/ssh.rb
facter-4.0.38 lib/facter/facts/aix/ssh.rb
facter-4.0.37 lib/facter/facts/aix/ssh.rb
facter-4.0.36 lib/facter/facts/aix/ssh.rb
facter-4.0.35 lib/facter/facts/aix/ssh.rb