class Facter::Util::Resolvers::Ssh

Attributes

fingerprint[RW]
key[RW]
name[RW]
type[RW]

Public Class Methods

new(fingerprint, type, key, name) click to toggle source
# File lib/facter/util/resolvers/ssh.rb, line 8
def initialize(fingerprint, type, key, name)
  @fingerprint = fingerprint
  @type = type
  @key = key
  @name = name
end