Module: PuppetDebugger::Support::Environment

Included in:
PuppetDebugger::Support
Defined in:
lib/puppet-debugger/support/environment.rb

Instance Method Summary collapse

Instance Method Details

#create_environmentObject

returns the environment



35
36
37
38
39
# File 'lib/puppet-debugger/support/environment.rb', line 35

def create_environment
  Puppet::Node::Environment.create(Puppet[:environment],
                                             default_modules_paths,
                                             default_manifests_dir)
end

#create_node_environment(manifest = nil) ⇒ Object



41
42
43
44
# File 'lib/puppet-debugger/support/environment.rb', line 41

def create_node_environment(manifest = nil)
  env = Puppet.lookup(:current_environment)
  manifest ? env.override_with(manifest: manifest) : env
end

#default_manifests_dirObject



26
27
28
# File 'lib/puppet-debugger/support/environment.rb', line 26

def default_manifests_dir
  File.join(Puppet[:environmentpath], Puppet[:environment], 'manifests')
end

#default_modules_pathsObject

returns an array of module directories, generally this is the only place to look for puppet code by default. This is read from the puppet configuration



13
14
15
16
17
18
19
# File 'lib/puppet-debugger/support/environment.rb', line 13

def default_modules_paths
  dirs = []
  # add the puppet-debugger directory so we can load any defined functions
  dirs << File.join(Puppet[:environmentpath], default_puppet_env_name, 'modules') unless Puppet[:environmentpath].empty?
  dirs << Puppet.settings[:basemodulepath].split(File::PATH_SEPARATOR)
  dirs.flatten
end

#default_puppet_env_nameObject

the cached name of the environment



55
56
57
# File 'lib/puppet-debugger/support/environment.rb', line 55

def default_puppet_env_name
  ENV['PUPPET_ENV'] || Puppet[:environment]
end

#default_site_manifestObject



30
31
32
# File 'lib/puppet-debugger/support/environment.rb', line 30

def default_site_manifest
  File.join(default_manifests_dir, 'site.pp')
end

#environment_loadersObject

currently this is not being used



60
61
62
# File 'lib/puppet-debugger/support/environment.rb', line 60

def environment_loaders
  name = compiler.loaders.public_environment_loader.loader_name
end

#modules_pathsObject

returns all the modules paths defined in the environment



22
23
24
# File 'lib/puppet-debugger/support/environment.rb', line 22

def modules_paths
  puppet_environment.full_modulepath
end

#puppet_env_nameObject



50
51
52
# File 'lib/puppet-debugger/support/environment.rb', line 50

def puppet_env_name
  puppet_environment.name
end

#puppet_environmentObject

creates a puppet environment given a module path and environment name this is cached



7
8
9
# File 'lib/puppet-debugger/support/environment.rb', line 7

def puppet_environment
  @puppet_environment ||= create_environment
end

#set_environment(value) ⇒ Object



46
47
48
# File 'lib/puppet-debugger/support/environment.rb', line 46

def set_environment(value)
  @puppet_environment = value
end