Blame view
Puppetfile
1.2 KB
|
d4af4bf81
|
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 |
|
|
1782dc6fe
|
7 8 9 10 11 12 13 14 |
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
# Core modules for a basic development environment. You can replace
# some/most of those if you want, but it's not recommended.
|
|
e7885ed5a
|
15 16 |
# Includes many of our custom types and providers, as well as global # config. Required. |
|
f54871efa
|
17 |
github "boxen", "1.0.0" |
|
1782dc6fe
|
18 19 20 |
# Core modules for a basic development environment. You can replace # some/most of these if you want, but it's not recommended. |
|
3198a5354
|
21 |
|
|
f54871efa
|
22 23 24 25 26 |
github "dnsmasq", "1.0.0" github "gcc", "1.0.0" github "git", "1.0.0" github "homebrew", "1.0.0" github "hub", "1.0.0" |
|
1782dc6fe
|
27 |
github "inifile", "0.9.0", :repo => "cprice-puppet/puppetlabs-inifile" |
|
f54871efa
|
28 29 30 31 |
github "nginx", "1.0.0" github "nodejs", "1.0.0" github "nvm", "1.0.0" github "ruby", "1.0.0" |
|
1782dc6fe
|
32 |
github "stdlib", "3.0.0", :repo => "puppetlabs/puppetlabs-stdlib" |
|
f54871efa
|
33 |
github "sudo", "1.0.0" |
|
a4c488851
|
34 |
|
|
1782dc6fe
|
35 36 |
# Optional/custom modules. There are tons available at # https://github.com/boxen. |