CHips L MINI SHELL

CHips L pro

Current Path : /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/http/service/
Upload File :
Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/http/service/puppetserver.rb

# The puppetserver service.
#
# @api private
#
class Puppet::HTTP::Service::Puppetserver < Puppet::HTTP::Service
  # @param [Puppet::HTTP::Client] client
  # @param [Puppet::HTTP::Session] session
  # @param [String] server If an explicit server is given,
  #   create a service using that server. If server is nil, the default value
  #   is used to create the service.
  # @param [Integer] port If an explicit port is given, create
  #   a service using that port. If port is nil, the default value is used to
  #   create the service.
  # @api private
  #
  def initialize(client, session, server, port)
    url = build_url('', server || Puppet[:server], port || Puppet[:serverport])
    super(client, session, url)
  end

  # Request the puppetserver's simple status
  #
  # @param [Puppet::SSL::SSLContext] ssl_context to use when establishing
  # the connection.
  # @return Puppet::HTTP::Response The HTTP response
  # @api private
  #
  def get_simple_status(ssl_context: nil)
    response = @client.get(
      with_base_url("/status/v1/simple/master"),
      headers: add_puppet_headers({}),
      options: {ssl_context: ssl_context}
    )

    process_response(response)

    [response, response.body.to_s]
  end
end

Copyright 2K16 - 2K18 Indonesian Hacker Rulez