my-boxen/Puppetfile

36 lines
1.1 KiB
Text
Raw Normal View History

# This file manages Puppet module dependencies.
#
2012-10-03 16:47:13 -04:00
# It works a lot like Bundler. We provide some core modules by
# default. This ensures at least the ability to construct a basic
# environment.
2012-10-03 14:28:53 -04:00
2013-02-05 18:20:23 -05:00
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
2012-10-03 16:47:13 -04:00
# Includes many of our custom types and providers, as well as global
# config. Required.
github "boxen", "2.3.6"
2013-02-05 18:20:23 -05:00
# Core modules for a basic development environment. You can replace
# some/most of these if you want, but it's not recommended.
2012-10-07 19:44:55 -04:00
github "dnsmasq", "1.0.0"
github "gcc", "2.0.1"
github "git", "1.2.4"
github "homebrew", "1.2.0"
github "hub", "1.0.0"
2013-06-29 10:24:00 -04:00
github "inifile", "0.9.0", :repo => "cprice404/puppetlabs-inifile"
github "nginx", "1.4.2"
github "nodejs", "3.2.7"
github "repository", "2.2.0"
github "ruby", "6.0.2"
github "stdlib", "4.0.2", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "1.0.0"
2012-10-02 23:21:31 -04:00
2013-02-05 18:20:23 -05:00
# Optional/custom modules. There are tons available at
# https://github.com/boxen.