class Facter::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/resolvers/utils/ssh.rb, line 5
def initialize(fingerprint, type, key, name)
  @fingerprint = fingerprint
  @type = type
  @key = key
  @name = name
end