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