Blame view
Puppetfile
727 Bytes
|
5494fe815
|
1 2 |
# This file manages Puppet module dependencies. # |
|
e7885ed5a
|
3 4 5 |
# It works a lot like Bundler. We provide some core modules by # default. This ensures at least the ability to construct a basic # environment. |
|
5494fe815
|
6 |
|
|
e7885ed5a
|
7 8 |
# Includes many of our custom types and providers, as well as global # config. Required. |
|
33a26da07
|
9 |
mod "boxen", "0.0.2", :github_tarball => "boxen/puppet-boxen" |
|
5494fe815
|
10 11 12 |
# Core modules for a basic development environment. # You can replace some/most of those if you want, but it's not recommended. |
|
ce459a313
|
13 14 15 |
%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename|
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
end
|
|
a4c488851
|
16 |
|
|
5494fe815
|
17 |
# Add your custom modules here. |
|
3cde3fa60
|
18 |
# There are tons available at https://github.com/boxen. |