Sha256: c27fe10be5d5cc211a37b566942ea10d0408306f01c4630bb19ffaf5391c6cd6
Contents?: true
Size: 389 Bytes
Versions: 38
Compression:
Stored size: 389 Bytes
Contents
# frozen_string_literal: true module Facts module Linux class Sshalgorithmkey FACT_NAME = 'ssh.*key' TYPE = :legacy 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 end end end
Version data entries
38 entries across 38 versions & 1 rubygems