Last active
August 29, 2015 14:03
-
-
Save wbs75/d4a40f0891b8597c1363 to your computer and use it in GitHub Desktop.
My-Boxen site.pp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require boxen::environment | |
require homebrew | |
package {'git': | |
install_options => ['--build-from-source'], | |
} | |
Exec { | |
group => 'staff', | |
logoutput => on_failure, | |
user => $boxen_user, | |
path => [ | |
"${boxen::config::home}/rbenv/shims", | |
"${boxen::config::home}/rbenv/bin", | |
"${boxen::config::home}/rbenv/plugins/ruby-build/bin", | |
"${boxen::config::home}/homebrew/bin", | |
'/usr/bin', | |
'/bin', | |
'/usr/sbin', | |
'/sbin' | |
], | |
environment => [ | |
"HOMEBREW_CACHE=${homebrew::config::cachedir}", | |
"HOME=/Users/${::boxen_user}" | |
] | |
} | |
File { | |
group => 'staff', | |
owner => $boxen_user | |
} | |
Package { | |
provider => homebrew, | |
require => Class['homebrew'], | |
install_options => ['--build-from-source'], | |
} | |
Repository { | |
provider => git, | |
extra => [ | |
'--recurse-submodules' | |
], | |
require => File["${boxen::config::bindir}/boxen-git-credential"], | |
config => { | |
'credential.helper' => "${boxen::config::bindir}/boxen-git-credential" | |
} | |
} | |
Service { | |
provider => ghlaunchd | |
} | |
Homebrew::Formula <| |> -> Package <| |> | |
node default { | |
# core modules, needed for most things | |
# include dnsmasq | |
include git | |
include hub | |
# include nginx | |
# fail if FDE is not enabled | |
# if $::root_encrypted == 'no' { | |
# fail('Please enable full disk encryption and try again') | |
# } | |
# node versions | |
# include nodejs::v0_6 | |
# include nodejs::v0_8 | |
# include nodejs::v0_10 | |
# default ruby versions | |
# ruby::version { '1.9.3': } | |
# ruby::version { '2.0.0': } | |
# ruby::version { '2.1.0': } | |
# ruby::version { '2.1.1': } | |
# ruby::version { '2.1.2': } | |
# common, useful packages | |
package { | |
[ | |
'ack', | |
'findutils', | |
'gnu-tar' | |
]: | |
} | |
file { "${boxen::config::srcdir}/our-boxen": | |
ensure => link, | |
target => $boxen::config::repodir | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment