Sha256: b9d63550bb08b19ed86e6183dacad4d42a5b9dc195959d12e3732b00d324bce2
Contents?: true
Size: 1.93 KB
Versions: 162
Compression:
Stored size: 1.93 KB
Contents
require 'puppet/ssl' require 'puppet/ssl/certificate' # Keep track of all of our known certificates. class Puppet::SSL::Inventory attr_reader :path # Add a certificate to our inventory. def add(cert) cert = cert.content if cert.is_a?(Puppet::SSL::Certificate) # RFC 5280 says the cert subject may contain UTF8 - https://www.ietf.org/rfc/rfc5280.txt # Note however that Puppet generated SSL files must only contain ASCII characters # based on the validate_certname method of Puppet::SSL::Base Puppet.settings.setting(:cert_inventory).open('a:UTF-8') do |f| f.print format(cert) end end # Format our certificate for output. def format(cert) iso = '%Y-%m-%dT%H:%M:%S%Z' "0x%04x %s %s %s\n" % [cert.serial, cert.not_before.strftime(iso), cert.not_after.strftime(iso), cert.subject] end def initialize @path = Puppet[:cert_inventory] end # Rebuild the inventory from scratch. This should happen if # the file is entirely missing or if it's somehow corrupted. def rebuild Puppet.notice _("Rebuilding inventory file") # RFC 5280 says the cert subject may contain UTF8 - https://www.ietf.org/rfc/rfc5280.txt Puppet.settings.setting(:cert_inventory).open('w:UTF-8') do |f| Puppet::SSL::Certificate.indirection.search("*").each do |cert| f.print format(cert.content) end end end # Find all serial numbers for a given certificate. If none can be found, returns # an empty array. def serials(name) return [] unless Puppet::FileSystem.exist?(@path) # RFC 5280 says the cert subject may contain UTF8 - https://www.ietf.org/rfc/rfc5280.txt # Note however that Puppet generated SSL files must only contain ASCII characters # based on the validate_certname method of Puppet::SSL::Base File.readlines(@path, :encoding => Encoding::UTF_8).collect do |line| /^(\S+).+\/CN=#{name}$/.match(line) end.compact.map { |m| Integer(m[1]) } end end
Version data entries
162 entries across 162 versions & 2 rubygems