Sha256: 15eee9685a8282f38e69602d82b09146785a0981c1f4a7b89bf0bcf0c6ab275b
Contents?: true
Size: 988 Bytes
Versions: 40
Compression:
Stored size: 988 Bytes
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. module Puppet::Configurer::PluginHandler def download_plugins? Puppet[:pluginsync] end # Retrieve facts from the central server. def download_plugins return nil unless download_plugins? plugin_downloader = Puppet::Configurer::Downloader.new( "plugin", Puppet[:plugindest], Puppet[:pluginsource], Puppet[:pluginsignore] ) plugin_downloader.evaluate.each { |file| load_plugin(file) } end def load_plugin(file) return unless FileTest.exist?(file) return if FileTest.directory?(file) begin if file =~ /.rb$/ Puppet.info "Loading downloaded plugin #{file}" load file else Puppet.debug "Skipping downloaded plugin #{file}" end rescue Exception => detail Puppet.err "Could not load downloaded file #{file}: #{detail}" end end end
Version data entries
40 entries across 40 versions & 4 rubygems