-
Notifications
You must be signed in to change notification settings - Fork 0
/
Puppetfile
53 lines (46 loc) · 1.66 KB
/
Puppetfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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.
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
# Includes many of our custom types and providers, as well as global
# config. Required.
github "boxen", "1.2.0"
# Core modules for a basic development environment. You can replace
# some/most of these if you want, but it's not recommended.
github "dnsmasq", "1.0.0"
github "gcc", "1.0.0"
github "git", "1.0.0"
github "homebrew", "1.1.2"
github "hub", "1.0.0"
github "inifile", "0.9.0", :repo => "cprice-puppet/puppetlabs-inifile"
github "nginx", "1.1.0"
github "nodejs", "1.0.0"
github "nvm", "1.0.0"
github "ruby", "3.1.0"
github "stdlib", "3.0.0", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "1.0.0"
# Optional/custom modules. There are tons available at
# https://github.com/boxen.
github "mou", "1.0.0"
github "sequel_pro", "1.0.0"
github "iterm2", "1.0.2"
github "caffeine", "1.0.0"
github "osx", "1.1.0"
github "transmit", "1.0.0"
github "fluid", "1.0.0"
github "mysql", "1.1.0"
github "property_list_key", "0.1.0"
github "wget", "1.0.0"
github "autoconf", "1.0.0"
github "libtool", "1.0.0"
github "pkgconfig", "1.0.0"
github "pcre", "1.0.0"
github "php", "0.5.6beta1"
mod "kaleidoscope", "1.0.2", :github_tarball => "oneboxmedia/boxen-kaleidoscope"
#mod "totalfinder", "0.1.1", :github_tarball => "jkongie/puppet-totalfinder"