Puppet Class: boxen::environment

Defined in:
manifests/environment.pp

Overview

Parameters:

  • relative_bin_on_path (Any) (defaults to: true)


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'manifests/environment.pp', line 7

class boxen::environment(
  $relative_bin_on_path = true,
) {
  # must be run very early
  require boxen::config
  require boxen::gemrc

  # can be run whenever
  include boxen::bin
  include boxen::janitor
  include boxen::personal
  include boxen::profile
  include boxen::repo
  include boxen::security
  include boxen::sudoers

  include_projects_from_boxen_cli()

  $relative_bin_on_path_ensure = $relative_bin_on_path ? {
    true    => present,
    default => absent,
  }

  boxen::env_script {
    'config':
      content  => template('boxen/config.sh.erb'),
      priority => 'highest' ;
    'gh_creds':
      content  => template('boxen/gh_creds.sh.erb'),
      priority => 'higher' ;
    'relative_bin_on_path':
      ensure   => $relative_bin_on_path_ensure,
      source   => 'puppet:///modules/boxen/relative_bin_on_path.sh',
      priority => 'lowest' ;
    'boxen_autocomplete':
      content  => template('boxen/boxen_autocomplete.sh.erb'),
      priority => 'lowest' ;
  }
}