Sha256: acdb512e38347544341c38b6ce183faaf6860cfc5cf2732f96e8ee08adc2beb0
Contents?: true
Size: 263 Bytes
Versions: 38
Compression:
Stored size: 263 Bytes
Contents
# frozen_string_literal: true module Facter class Ssh attr_accessor :fingerprint, :type, :key, :name def initialize(fingerprint, type, key, name) @fingerprint = fingerprint @type = type @key = key @name = name end end end
Version data entries
38 entries across 38 versions & 1 rubygems