forked from rickerc/puppet_openstack_builder
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPuppetfile
More file actions
250 lines (208 loc) · 7.1 KB
/
Copy pathPuppetfile
File metadata and controls
250 lines (208 loc) · 7.1 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# To make a custom distribution, fork each of these repos and
# export reposource=<your github organisation>.
# The ref can also be specified using reporef for doing releases
git_protocol = ENV['git_protocol'] || 'https'
reposource = ENV['reposource'] || 'upstream'
reporef = ENV['reporef'] || 'master'
git_protocol = 'https'
if reposource == 'upstream'
author = reposource
ref = reporef
else
ref = 'master'
end
# apache
if reposource == 'upstream'
author = 'Mylezeem'
end
mod 'Mylezeem/account', :git => "#{git_protocol}://github.com/#{author}/puppet-account.git", :ref => ref
# apache
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/apache', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-apache.git", :ref => ref
# apt
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/apt', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-apt.git", :ref => ref
# ceilometer
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/ceilometer', :git => "#{git_protocol}://github.com/#{author}/puppet-ceilometer.git", :ref => ref
# cinder
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/cinder', :git => "#{git_protocol}://github.com/#{author}/puppet-cinder.git", :ref => ref
# concat
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/concat', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-concat.git", :ref => ref
# firewall
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/firewall', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-firewall.git", :ref => ref
# galera
if reposource == 'upstream'
author = 'michaeltchapman'
end
mod 'michaeltchapman/galera', :git => "#{git_protocol}://github.com/#{author}/puppet-galera.git", :ref => ref
# glance
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/glance', :git => "#{git_protocol}://github.com/#{author}/puppet-glance.git", :ref => ref
# haproxy
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/haproxy', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-haproxy.git", :ref => ref
# heat
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/heat', :git => "#{git_protocol}://github.com/#{author}/puppet-heat.git", :ref => ref
# horizon
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/horizon', :git => "#{git_protocol}://github.com/#{author}/puppet-horizon.git", :ref => ref
# inifile
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/inifile', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-inifile.git", :ref => ref
# keepalived
if reposource == 'upstream'
author = 'arioch'
end
mod 'arioch/keepalived', :git => "#{git_protocol}://github.com/#{author}/puppet-keepalived.git", :ref => ref
# keystone
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/keystone', :git => "#{git_protocol}://github.com/#{author}/puppet-keystone.git", :ref => ref
# memcached
if reposource == 'upstream'
author = 'saz'
end
mod 'saz/memcached', :git => "#{git_protocol}://github.com/#{author}/puppet-memcached.git", :ref => ref
# mysql
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/mysql', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-mysql.git", :ref => ref
# neutron
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/neutron', :git => "#{git_protocol}://github.com/#{author}/puppet-neutron.git", :ref => ref
# nova
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/nova', :git => "#{git_protocol}://github.com/#{author}/puppet-nova.git", :ref => ref
# openstack
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/openstack', :git => "#{git_protocol}://github.com/#{author}/puppet-openstack.git", :ref => ref
# openstack_extras
if reposource == 'upstream'
author = 'michaeltchapman'
end
mod 'stackforge/openstack_extras', :git => "#{git_protocol}://github.com/#{author}/puppet-openstack_extras.git", :ref => ref
# openstacklib
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/openstacklib', :git => "#{git_protocol}://github.com/#{author}/puppet-openstacklib.git", :ref => ref
# postgresql
if reposource == 'upstream'
author = 'michaeltchapman'
end
mod 'puppetlabs/partial', :git => "#{git_protocol}://github.com/#{author}/puppet-partial.git", :ref => ref
# postgresql
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/postgresql', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-postgresql.git", :ref => ref
# puppeels
if reposource == 'upstream'
author = 'Mylezeem'
end
mod 'Mylezeem/profile', :git => "#{git_protocol}://github.com/#{author}/puppeels.git", :ref => ref
# puppet
if reposource == 'upstream'
author = 'stephenrjohnson'
end
mod 'stephenrjohnson/puppet', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-puppet.git", :ref => ref
# rabbitmq
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/rabbitmq', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-rabbitmq.git", :ref => ref
# rsync
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/rsync', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-rsync.git", :ref => ref
# ruby-puppetdb
if reposource == 'upstream'
author = 'ripienaar'
end
mod 'ripienaar/ruby-puppetdb', :git => "#{git_protocol}://github.com/#{author}/ruby-puppetdb.git", :ref => ref
# stacktira
if reposource == 'upstream'
author = 'aptira'
end
mod 'aptira/stacktira', :git => "#{git_protocol}://github.com/#{author}/puppet-stacktira.git", :ref => ref
# staging
if reposource == 'upstream'
author = 'nanliu'
end
mod 'nanliu/staging', :git => "#{git_protocol}://github.com/#{author}/puppet-staging.git", :ref => ref
# stdlib
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/stdlib', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-stdlib.git", :ref => ref
# swift
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/swift', :git => "#{git_protocol}://github.com/#{author}/puppet-swift.git", :ref => ref
# sysctl
if reposource == 'upstream'
author = 'thias'
end
mod 'thias/sysctl', :git => "#{git_protocol}://github.com/#{author}/puppet-sysctl.git", :ref => ref
# tempest
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/tempest', :git => "#{git_protocol}://github.com/#{author}/puppet-tempest.git", :ref => ref
# tftp
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/tftp', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-tftp.git", :ref => ref
# vcsrepo
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/vcsrepo', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-vcsrepo.git", :ref => ref
# vswitch
if reposource == 'upstream'
author = 'stackforge'
end
mod 'stackforge/vswitch', :git => "#{git_protocol}://github.com/#{author}/puppet-vswitch.git", :ref => ref
# xinetd
if reposource == 'upstream'
author = 'puppetlabs'
end
mod 'puppetlabs/xinetd', :git => "#{git_protocol}://github.com/#{author}/puppetlabs-xinetd.git", :ref => ref