Method: Puppet::Plugins::Configuration.load_plugins

Defined in:
lib/puppet/plugins/configuration.rb

.load_pluginsObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/puppet/plugins/configuration.rb', line 16

def self.load_plugins
  # Register extensions
  # -------------------
  {
    SyntaxCheckers::SYNTAX_CHECKERS_KEY => {
      'json' => Puppet::SyntaxCheckers::Json.new,
      'base64' => Puppet::SyntaxCheckers::Base64.new,
      'pp' => Puppet::SyntaxCheckers::PP.new,
      'epp' => Puppet::SyntaxCheckers::EPP.new
    }
  }
end