Sha256: 3311afb084e60a948ea6404ce93139aeb7cff5d05d521e86584f046f8154fae8
Contents?: true
Size: 390 Bytes
Versions: 38
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true module Facts module Macosx 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