update default node def
This commit is contained in:
parent
f4cad7de30
commit
f5a10d9d8f
1 changed files with 42 additions and 2 deletions
|
@ -1,3 +1,43 @@
|
||||||
node default {
|
require boxen::config
|
||||||
notify { 'Hello, world.': }
|
require homebrew::repo
|
||||||
|
|
||||||
|
Exec {
|
||||||
|
group => 'staff',
|
||||||
|
logoutput => on_failure,
|
||||||
|
user => $luser,
|
||||||
|
|
||||||
|
path => [
|
||||||
|
"${boxen::config::home}/rbenv/shims",
|
||||||
|
"${boxen::config::home}/homebrew/bin",
|
||||||
|
'/usr/bin',
|
||||||
|
'/bin',
|
||||||
|
'/usr/sbin',
|
||||||
|
'/sbin'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
File {
|
||||||
|
group => 'staff',
|
||||||
|
owner => $luser
|
||||||
|
}
|
||||||
|
|
||||||
|
Package {
|
||||||
|
provider => homebrew,
|
||||||
|
require => Class['homebrew']
|
||||||
|
}
|
||||||
|
|
||||||
|
Repository {
|
||||||
|
provider => git,
|
||||||
|
extra => [
|
||||||
|
'--recurse-submodules'
|
||||||
|
],
|
||||||
|
require => Class['git']
|
||||||
|
}
|
||||||
|
|
||||||
|
Service {
|
||||||
|
provider => ghlaunchd
|
||||||
|
}
|
||||||
|
|
||||||
|
node default {
|
||||||
|
include setup::environment
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue