-
Notifications
You must be signed in to change notification settings - Fork 1
/
Puppetfile
61 lines (59 loc) · 2.24 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
forge 'https://forgeapi.puppetlabs.com'
PUPPETFILE_LOAD = File.expand_path( '../Puppetfile.local', __FILE__ )
if File.exists? PUPPETFILE_LOAD
eval(File.read(PUPPETFILE_LOAD))
elsif !ENV['PUPPETFILE_USE_GIT']
mod 'codingfuture/cfauth'
mod 'codingfuture/cfbackup'
mod 'codingfuture/cfdb'
mod 'codingfuture/cffirehol'
mod 'codingfuture/cflogsink'
mod 'codingfuture/cfmetrics'
mod 'codingfuture/cfnetwork'
mod 'codingfuture/cfpuppetserver'
#mod 'codingfuture/cfstorage'
mod 'codingfuture/cfsystem'
mod 'codingfuture/cftotalcontrol'
mod 'codingfuture/cfweb'
mod 'codingfuture/cfwebapp'
else
mod 'codingfuture/cfauth',
:git => "https://github.com/codingfuture/puppet-cfauth",
:ref => 'master'
mod 'codingfuture/cfbackup',
:git => "https://github.com/codingfuture/puppet-cfbackup",
:ref => 'master'
mod 'codingfuture/cfdb',
:git => "https://github.com/codingfuture/puppet-cfdb",
:ref => 'master'
mod 'codingfuture/cffirehol',
:git => "https://github.com/codingfuture/puppet-cffirehol",
:ref => 'master'
mod 'codingfuture/cflogsink',
:git => "https://github.com/codingfuture/puppet-cflogsink",
:ref => 'master'
mod 'codingfuture/cfmetrics',
:git => "https://github.com/codingfuture/puppet-cfmetrics",
:ref => 'master'
mod 'codingfuture/cfnetwork',
:git => "https://github.com/codingfuture/puppet-cfnetwork",
:ref => 'master'
mod 'codingfuture/cfpuppetserver',
:git => "https://github.com/codingfuture/puppet-cfpuppetserver",
:ref => 'master'
#mod 'codingfuture/cfstorage',
#:git => "https://github.com/codingfuture/puppet-cfstorage",
#:ref => 'master'
mod 'codingfuture/cfsystem',
:git => "https://github.com/codingfuture/puppet-cfsystem",
:ref => 'master'
mod 'codingfuture/cftotalcontrol',
:git => "https://github.com/codingfuture/puppet-cftotalcontrol",
:ref => 'master'
mod 'codingfuture/cfweb',
:git => "https://github.com/codingfuture/puppet-cfweb",
:ref => 'master'
mod 'codingfuture/cfwebapp',
:git => "https://github.com/codingfuture/puppet-cfwebapp",
:ref => 'master'
end