Puppet Class: boxen::personal

Defined in:
manifests/personal.pp

Overview

Parameters:

  • projects (Any) (defaults to: [])
  • includes (Any) (defaults to: [])
  • casks (Any) (defaults to: [])
  • osx_apps (Any) (defaults to: undef)
  • homebrew_packages (Any) (defaults to: [])
  • custom_projects (Any) (defaults to: {})


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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'manifests/personal.pp', line 21

class boxen::personal (
  $projects          = [],
  $includes          = [],
  $casks             = [],
  $osx_apps          = undef,
  $homebrew_packages = [],
  $custom_projects   = {},
){
  include boxen::config

  $manifests = "${boxen::config::repodir}/modules/people/manifests"
  $login     = regsubst($boxen::config::login, '-','_', 'G')
  $merge_hierarchy = $boxen::config::hiera_merge_hierarchy

  if $login != $boxen::config::login {
    notice("Changed boxen::personal login to ${login}")
  }
  if file_exists("${manifests}/${login}.pp") {
    include "people::${login}"
  }

  # If $projects looks like ['foo', 'bar'], behaves like:
  #   include projects::foo
  #   include projects::bar
  $_projects = $merge_hierarchy ? {
    true      => hiera_array("${name}::projects",[]),
    default   => $projects
  }
  $project_classes = prefix($_projects, 'projects::')
  ensure_resource('class', $project_classes)

  # If $includes looks like ['foo', 'bar'], behaves like:
  # class { 'foo': }
  # class { 'bar': }
  $_includes = $merge_hierarchy ? {
    true      => hiera_array("${name}::includes",undef),
    default   => $includes
  }
  ensure_resource('class', $_includes)

  if $merge_hierarchy {
    $merged_osx_apps = hiera_array("${name}::osx_apps",undef)
    $merged_casks = hiera_array("${name}::casks",undef)

    $_casks = $merged_osx_apps ? {
      undef   => $merged_casks,
      default => $merged_osx_apps
    }
  }
  else {
    # $casks and $osx_apps are synonyms. $osx_apps takes precedence
    $_casks = $osx_apps ? {
      undef   => $casks,
      default => $osx_apps
    }
  }

  # If any casks/osx_apps are specified, declare them as brewcask packages
  if count($_casks) > 0 { include brewcask }
  ensure_resource('package', $_casks, {
    'provider'        => 'brewcask',
    'install_options' => ['--appdir=/Applications',
                          "--binarydir=${boxen::config::homebrewdir}/bin"],
  })

  # If any homebrew packages are specified , declare them
  $_homebrew_packages = $merge_hierarchy ? {
    true      => hiera_array("${name}::homebrew_packages",undef),
    default   => $homebrew_packages
  }
  ensure_resource('package', $_homebrew_packages, {
    'provider' => 'homebrew',
  })

  # If any custom projects are specified, declare them.
  # e.g. $custom_projects = {
  #        'personal-site' => { 'ruby' => '2.1.2', 'nginx' => true }
  #      }
  # results in
  # boxen::project { 'personal-site':
  #   ruby  => '2.1.2',
  #   nginx => true,
  # }
  #
  # Multiple projects may be specified in the $custom_projects hash.
  $_custom_projects = $merge_hierarchy ? {
    true      => hiera_array("${name}::custom_projects",{}),
    default   => $custom_projects
  }
  create_resources(boxen::project, $_custom_projects)
}