Sha256: c652a35bc3d5579d6f9c1738c8fb16fef2cbb473577a146d7283b26339486e45
Contents?: true
Size: 646 Bytes
Versions: 322
Compression:
Stored size: 646 Bytes
Contents
require 'puppet/application/indirection_base' require 'puppet/ssl/oids' class Puppet::Application::Certificate < Puppet::Application::IndirectionBase def setup Puppet::SSL::Oids.register_puppet_oids location = Puppet::SSL::Host.ca_location if location == :local && !Puppet::SSL::CertificateAuthority.ca? # I'd prefer if this could be dealt with differently; ideally, run_mode should be set as # part of a class definition, and should not be modifiable beyond that. This is one of # the cases where that isn't currently possible. Puppet.settings.preferred_run_mode = "master" end super end end
Version data entries
322 entries across 322 versions & 3 rubygems