Commit ce459a313fa01d225f106de4a4b8c9a1b81fb1cf
1 parent
d6e023ccbe
turn puppet fu back on
Showing 2 changed files with 39 additions and 39 deletions Side-by-side Diff
Puppetfile
... | ... | @@ -11,9 +11,9 @@ |
11 | 11 | |
12 | 12 | # Core modules for a basic development environment. |
13 | 13 | # You can replace some/most of those if you want, but it's not recommended. |
14 | -#%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename| | |
15 | -# mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}" | |
16 | -#end | |
14 | +%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename| | |
15 | + mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}" | |
16 | +end | |
17 | 17 | |
18 | 18 | # Add your custom modules here. |
19 | 19 | # There are tons available at https://github.com/boxen. |
manifests/site.pp
1 | -# require boxen::environment | |
2 | -# require homebrew::repo | |
1 | +require boxen::environment | |
2 | +require homebrew::repo | |
3 | 3 | |
4 | -# Exec { | |
5 | -# group => 'staff', | |
6 | -# logoutput => on_failure, | |
7 | -# user => $luser, | |
4 | +Exec { | |
5 | + group => 'staff', | |
6 | + logoutput => on_failure, | |
7 | + user => $luser, | |
8 | 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 | -# } | |
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 | 18 | |
19 | -# File { | |
20 | -# group => 'staff', | |
21 | -# owner => $luser | |
22 | -# } | |
19 | +File { | |
20 | + group => 'staff', | |
21 | + owner => $luser | |
22 | +} | |
23 | 23 | |
24 | -# Package { | |
25 | -# provider => homebrew, | |
26 | -# require => Class['homebrew'] | |
27 | -# } | |
24 | +Package { | |
25 | + provider => homebrew, | |
26 | + require => Class['homebrew'] | |
27 | +} | |
28 | 28 | |
29 | -# Repository { | |
30 | -# provider => git, | |
31 | -# extra => [ | |
32 | -# '--recurse-submodules' | |
33 | -# ], | |
34 | -# require => Class['git'] | |
35 | -# } | |
29 | +Repository { | |
30 | + provider => git, | |
31 | + extra => [ | |
32 | + '--recurse-submodules' | |
33 | + ], | |
34 | + require => Class['git'] | |
35 | +} | |
36 | 36 | |
37 | -# Service { | |
38 | -# provider => ghlaunchd | |
39 | -# } | |
37 | +Service { | |
38 | + provider => ghlaunchd | |
39 | +} | |
40 | 40 | |
41 | -# node default { | |
42 | -# include git | |
43 | -# } | |
41 | +node default { | |
42 | + include git | |
43 | +} |