Add some docs to Puppetfile
This commit is contained in:
parent
cbb0b65464
commit
5494fe815d
1 changed files with 13 additions and 1 deletions
14
Puppetfile
14
Puppetfile
|
@ -1,5 +1,17 @@
|
|||
# This file manages Puppet module dependencies.
|
||||
#
|
||||
# It works a lot like Bundler. We provide some core modules by default.
|
||||
# This ensures at least the ability to construct a basic environment.
|
||||
|
||||
# Includes many of our custom types and providers, as well as global config.
|
||||
# Required.
|
||||
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
||||
|
||||
# Core modules for a basic development environment.
|
||||
# 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|
|
||||
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
|
||||
end
|
||||
|
||||
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
||||
# Add your custom modules here.
|
||||
# There are tons available at https://github.com/boxen.
|
Loading…
Reference in a new issue