class Puppet::SSL::Validator::NoValidator

Performs no SSL verification @api private

Public Instance Methods

peer_certs() click to toggle source
# File lib/puppet/ssl/validator/no_validator.rb, line 13
def peer_certs
  []
end
setup_connection(connection) click to toggle source
# File lib/puppet/ssl/validator/no_validator.rb, line 9
def setup_connection(connection)
  connection.verify_mode = OpenSSL::SSL::VERIFY_NONE
end
verify_errors() click to toggle source
# File lib/puppet/ssl/validator/no_validator.rb, line 17
def verify_errors
  []
end