-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPuppetfile
98 lines (85 loc) · 2.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# 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.
# Shortcut for a module from GitHub's boxen organization
def github(name, *args)
options ||= if args.last.is_a? Hash
args.last
else
{}
end
if path = options.delete(:path)
mod name, :path => path
else
version = args.first
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
end
# Shortcut for a module under development
def dev(name, *args)
mod "puppet-#{name}", :path => "#{ENV['HOME']}/src/boxen/puppet-#{name}"
end
# Includes many of our custom types and providers, as well as global
# config. Required.
github "boxen", "3.11.0"
# Support for default hiera data in modules
github "module_data", "0.0.4", :repo => "ripienaar/puppet-module-data"
# Core modules for a basic development environment. You can replace
# some/most of these if you want, but it's not recommended.
github "brewcask", "0.0.6"
#github "dnsmasq", "2.0.1"
#github "foreman", "1.2.0"
github "gcc", "3.0.2"
github "git", "2.7.92"
#github "go", "2.1.0"
github "homebrew", "1.13.0"
github "hub", "1.4.1"
github "inifile", "1.4.1", :repo => "puppetlabs/puppetlabs-inifile"
#github "nginx", "1.4.6"
#github "nodejs", "5.0.0"
github "openssl", "1.0.0"
github "phantomjs", "3.0.0"
github "pkgconfig", "1.0.0"
github "repository", "2.4.1"
#github "ruby", "8.5.2"
github "stdlib", "4.7.0", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "1.0.0"
github "xquartz", "1.2.1"
# Optional/custom modules. There are tons available at
# https://github.com/boxen.
# github "elasticsearch", "2.8.0"
# github "mysql", "2.0.1"
# github "postgresql", "4.0.1"
# github "redis", "3.1.0"
# github "sysctl", "1.0.1"
# https://github.com/boxen/puppet-screen
github "screen", "0.0.2"
# https://github.com/boxen/puppet-chrome
github "chrome", "1.2.0"
# https://github.com/boxen/puppet-spotify
github "spotify", "1.0.2"
# https://github.com/boxen/puppet-emacs
github "emacs", "1.3.0"
# https://github.com/boxen/puppet-vlc
github "vlc", "1.1.0"
# https://github.com/boxen/puppet-wget
github "wget", "1.0.1"
# https://github.com/boxen/puppet-vagrant
github "vagrant", "3.3.3"
# https://github.com/boxen/puppet-virtualbox
github "virtualbox", "1.0.13"
# https://github.com/boxen/puppet-firefox
github "firefox", "1.2.3"
# https://github.com/boxen/puppet-python
github "python", "2.0.1"
# https://github.com/boxen/puppet-osx
github "osx", "2.8.0"
# https://github.com/boxen/puppet-vlc
github "vlc", "1.1.0"
# https://github.com/rolfvandekrol/puppet-systemsetup
github "systemsetup", "0.0.1", :repo => 'rolfvandekrol/puppet-systemsetup'
github "hipchat", '1.1.3'
github "mumble", '1.0.5'