Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
# 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