Commit f5a10d9d8f52306cc837fd07d2c5d78538c1a9fd

Authored by Will Farrington
1 parent f4cad7de30

update default node def

Showing 1 changed file with 41 additions and 1 deletions Side-by-side Diff

  1 +require boxen::config
  2 +require homebrew::repo
  3 +
  4 +Exec {
  5 + group => 'staff',
  6 + logoutput => on_failure,
  7 + user => $luser,
  8 +
  9 + path => [
  10 + "${boxen::config::home}/rbenv/shims",
  11 + "${boxen::config::home}/homebrew/bin",
  12 + '/usr/bin',
  13 + '/bin',
  14 + '/usr/sbin',
  15 + '/sbin'
  16 + ]
  17 +}
  18 +
  19 +File {
  20 + group => 'staff',
  21 + owner => $luser
  22 +}
  23 +
  24 +Package {
  25 + provider => homebrew,
  26 + require => Class['homebrew']
  27 +}
  28 +
  29 +Repository {
  30 + provider => git,
  31 + extra => [
  32 + '--recurse-submodules'
  33 + ],
  34 + require => Class['git']
  35 +}
  36 +
  37 +Service {
  38 + provider => ghlaunchd
  39 +}
  40 +
1 41 node default {
2   - notify { 'Hello, world.': }
  42 + include setup::environment
3 43 }