Blame view
Puppetfile
1.14 KB
5494fe815 Add some docs to ... |
1 2 |
# This file manages Puppet module dependencies. # |
e7885ed5a Update for Boxen ... |
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 Add some docs to ... |
6 |
|
e7885ed5a Update for Boxen ... |
7 8 |
# Includes many of our custom types and providers, as well as global # config. Required. |
1fa1b0b30 update puppet-box... |
9 10 11 12 13 14 15 16 |
mod "boxen", "0.0.13", :github_tarball => "boxen/puppet-boxen" mod "dnsmasq", "0.0.1", :github_tarball => "boxen/puppet-dnsmasq" mod "git", "0.0.2.1", :github_tarball => "boxen/puppet-git" mod "homebrew", "0.0.4", :github_tarball => "boxen/puppet-homebrew" mod "nginx", "0.0.2", :github_tarball => "boxen/puppet-nginx" mod "nvm", "0.0.5", :github_tarball => "boxen/puppet-nvm" mod "rbenv", "0.0.2", :github_tarball => "boxen/puppet-rbenv" mod "ruby", "0.0.8", :github_tarball => "boxen/puppet-ruby" |
5494fe815 Add some docs to ... |
17 18 19 |
# Core modules for a basic development environment. # You can replace some/most of those if you want, but it's not recommended. |
24f1da614 module bumps for ... |
20 |
%w(nodejs hub inifile sudo).each do |modulename| |
ce459a313 turn puppet fu ba... |
21 22 |
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}" end |
a4c488851 Update modulefile |
23 |
|
5494fe815 Add some docs to ... |
24 |
# Add your custom modules here. |
3cde3fa60 Merge branch 'mas... |
25 |
# There are tons available at https://github.com/boxen. |