Sha256: 26270d79e1aaac85c873449142f13b4bc82f30e59a1e3703ac21b0e7e3fba375

Contents?: true

Size: 1.92 KB

Versions: 115

Compression:

Stored size: 1.92 KB

Contents

require 'puppet/face'
require 'puppet/configurer/downloader_factory'
require 'puppet/configurer/plugin_handler'

Puppet::Face.define(:plugin, '0.0.1') do
  copyright "Puppet Labs", 2011
  license   "Apache 2 license; see COPYING"

  summary "Interact with the Puppet plugin system."
  description <<-'EOT'
    This subcommand provides network access to the puppet master's store of
    plugins.

    The puppet master serves Ruby code collected from the `lib` directories
    of its modules. These plugins can be used on agent nodes to extend
    Facter and implement custom types and providers. Plugins are normally
    downloaded by puppet agent during the course of a run.
  EOT

  action :download do
    summary "Download plugins from the puppet master."
    description <<-'EOT'
      Downloads plugins from the configured puppet master. Any plugins
      downloaded in this way will be used in all subsequent Puppet activity.
      This action modifies files on disk.
    EOT
    returns <<-'EOT'
      A list of the files downloaded, or a confirmation that no files were
      downloaded. When used from the Ruby API, this action returns an array of
      the files downloaded, which will be empty if none were retrieved.
    EOT
    examples <<-'EOT'
      Retrieve plugins from the puppet master:

      $ puppet plugin download

      Retrieve plugins from the puppet master (API example):

      $ Puppet::Face[:plugin, '0.0.1'].download
    EOT

    when_invoked do |options|
      remote_environment_for_plugins = Puppet::Node::Environment.remote(Puppet[:environment])

      factory = Puppet::Configurer::DownloaderFactory.new
      handler = Puppet::Configurer::PluginHandler.new(factory)
      handler.download_plugins(remote_environment_for_plugins)
    end

    when_rendering :console do |value|
      if value.empty? then
        "No plugins downloaded."
      else
        "Downloaded these plugins: #{value.join(', ')}"
      end
    end
  end
end

Version data entries

115 entries across 115 versions & 2 rubygems

Version Path
puppet-retrospec-1.5.0 vendor/gems/puppet-4.5.2/lib/puppet/face/plugin.rb
puppet-retrospec-1.4.1 vendor/gems/puppet-4.5.2/lib/puppet/face/plugin.rb
puppet-4.10.1 lib/puppet/face/plugin.rb
puppet-4.10.1-x86-mingw32 lib/puppet/face/plugin.rb
puppet-4.10.1-x64-mingw32 lib/puppet/face/plugin.rb
puppet-4.10.1-universal-darwin lib/puppet/face/plugin.rb
puppet-retrospec-1.4.0 vendor/gems/puppet-4.5.2/lib/puppet/face/plugin.rb
puppet-4.10.0 lib/puppet/face/plugin.rb
puppet-4.10.0-x86-mingw32 lib/puppet/face/plugin.rb
puppet-4.10.0-x64-mingw32 lib/puppet/face/plugin.rb
puppet-4.10.0-universal-darwin lib/puppet/face/plugin.rb
puppet-retrospec-1.3.2 vendor/gems/puppet-4.5.2/lib/puppet/face/plugin.rb
puppet-4.9.4 lib/puppet/face/plugin.rb
puppet-4.9.4-x86-mingw32 lib/puppet/face/plugin.rb
puppet-4.9.4-x64-mingw32 lib/puppet/face/plugin.rb
puppet-4.9.4-universal-darwin lib/puppet/face/plugin.rb
puppet-retrospec-1.3.1 vendor/gems/puppet-4.5.2/lib/puppet/face/plugin.rb
puppet-4.9.3 lib/puppet/face/plugin.rb
puppet-4.9.3-x86-mingw32 lib/puppet/face/plugin.rb
puppet-4.9.3-x64-mingw32 lib/puppet/face/plugin.rb