Sha256: 6713d5a6fd7a1edb96839060479fdade6aa494936993a01864a0df6cbb5781ff

Contents?: true

Size: 1.38 KB

Versions: 89

Compression:

Stored size: 1.38 KB

Contents

# 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 'puppet/configurer'

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

  def download_plugins(environment)
    source_permissions = Puppet.features.microsoft_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

    server_agent_version = Puppet.lookup(:server_agent_version) { "0.0" }
    if Gem::Version.new(server_agent_version) >= SUPPORTED_LOCALES_MOUNT_AGENT_VERSION
      locales_downloader = Puppet::Configurer::Downloader.new(
        "locales",
        Puppet[:localedest],
        Puppet[:localesource],
        Puppet[:pluginsignore] + " *.pot config.yaml",
        environment
      )
      result += locales_downloader.evaluate
    end


    Puppet::Util::Autoload.reload_changed

    result
  end
end

Version data entries

89 entries across 89 versions & 2 rubygems

Version Path
puppet-5.5.22 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.22-x86-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.22-x64-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.22-universal-darwin lib/puppet/configurer/plugin_handler.rb
puppet-5.5.21 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.21-x86-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.21-x64-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.21-universal-darwin lib/puppet/configurer/plugin_handler.rb
puppet-5.5.20 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.20-x86-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.20-x64-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.20-universal-darwin lib/puppet/configurer/plugin_handler.rb
puppet-5.5.19 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.19-x86-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.19-x64-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.19-universal-darwin lib/puppet/configurer/plugin_handler.rb
puppet-5.5.18 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.18-x86-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.18-x64-mingw32 lib/puppet/configurer/plugin_handler.rb
puppet-5.5.18-universal-darwin lib/puppet/configurer/plugin_handler.rb