Puppet Function: boxen::data

Defined in:
lib/puppet/functions/boxen/data.rb
Function type:
Ruby 4.x API

Overview

boxen::data()Any

Returns:

  • (Any)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/puppet/functions/boxen/data.rb', line 1

Puppet::Functions.create_function(:'boxen::data') do
  def data
    home = closure_scope.lookupvar('::boxen_home')
    {
      'boxen::config::home'                   => home,
      'boxen::config::bindir'                 => "#{home}/bin",
      'boxen::config::cachedir'               => "#{home}/cache",
      'boxen::config::configdir'              => "#{home}/config",
      'boxen::config::datadir'                => "#{home}/data",
      'boxen::config::envdir'                 => "#{home}/env.d",
      'boxen::config::logdir'                 => "#{home}/log",
      'boxen::config::socketdir'              => "#{home}/data/project-sockets",
      'boxen::config::homebrewdir'            => closure_scope.lookupvar('::homebrew_root'),
      'boxen::config::repodir'                => closure_scope.lookupvar('::boxen_repodir'),
      'boxen::config::reponame'               => closure_scope.lookupvar('::boxen_reponame'),
      'boxen::config::srcdir'                 => closure_scope.lookupvar('::boxen_srcdir'),
      'boxen::config::login'                  => closure_scope.lookupvar('::github_login'),
      'boxen::config::repo_url_template'      => closure_scope.lookupvar('::boxen_repo_url_template'),
      'boxen::config::download_url_base'      => closure_scope.lookupvar('::boxen_download_url_base'),
      'boxen::config::hiera_merge_hierarchy'  => false
    }
  end
end