turn puppet fu back on

This commit is contained in:
Will Farrington 2012-10-03 15:30:37 -07:00
parent d6e023ccbe
commit ce459a313f
2 changed files with 39 additions and 39 deletions

View file

@ -11,9 +11,9 @@ mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
# Core modules for a basic development environment. # Core modules for a basic development environment.
# You can replace some/most of those if you want, but it's not recommended. # You can replace some/most of those if you want, but it's not recommended.
#%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename| %w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename|
# mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}" mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
#end end
# Add your custom modules here. # Add your custom modules here.
# There are tons available at https://github.com/boxen. # There are tons available at https://github.com/boxen.

View file

@ -1,43 +1,43 @@
# require boxen::environment require boxen::environment
# require homebrew::repo require homebrew::repo
# Exec { Exec {
# group => 'staff', group => 'staff',
# logoutput => on_failure, logoutput => on_failure,
# user => $luser, user => $luser,
# path => [ path => [
# "${boxen::config::home}/rbenv/shims", "${boxen::config::home}/rbenv/shims",
# "${boxen::config::home}/homebrew/bin", "${boxen::config::home}/homebrew/bin",
# '/usr/bin', '/usr/bin',
# '/bin', '/bin',
# '/usr/sbin', '/usr/sbin',
# '/sbin' '/sbin'
# ] ]
# } }
# File { File {
# group => 'staff', group => 'staff',
# owner => $luser owner => $luser
# } }
# Package { Package {
# provider => homebrew, provider => homebrew,
# require => Class['homebrew'] require => Class['homebrew']
# } }
# Repository { Repository {
# provider => git, provider => git,
# extra => [ extra => [
# '--recurse-submodules' '--recurse-submodules'
# ], ],
# require => Class['git'] require => Class['git']
# } }
# Service { Service {
# provider => ghlaunchd provider => ghlaunchd
# } }
# node default { node default {
# include git include git
# } }