Module: Puppet::Plugins::Configuration Private

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

Overview

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

API:

  • private

Class Method Summary collapse

Class Method Details

.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.

API:

  • private



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

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