Sha256: 66d06a6ba0ed08a3f8b8cf77481e99422f02309373b5009412356891ab8e010d
Contents?: true
Size: 391 Bytes
Versions: 38
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true module Facts module Freebsd 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