]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/manifests/init.pp
1e27bcd9c6beae7c05ff624ce036fbf659a25e5b
[dsa-puppet.git] / modules / roles / manifests / init.pp
1 # = Class: roles
2 #
3 # Lookup role and include relevant classes for roles
4 #
5 # == Sample Usage:
6 #
7 #   include roles
8 #
9 class roles {
10
11         if has_role('puppetmaster') {
12                 include puppetmaster
13         }
14
15         if has_role('muninmaster') {
16                 include munin::master
17         }
18
19         if has_role('nagiosmaster') {
20         #       include nagios::server
21                 ssl::service { 'nagios.debian.org':
22                         notify => Service['apache2'],
23                 }
24         }
25
26         # XXX: turn this into a real role
27         if getfromhash($site::nodeinfo, 'buildd') {
28                 include buildd
29         }
30
31         # XXX: turn this into a real role
32         if getfromhash($site::nodeinfo, 'porterbox') {
33                 include porterbox
34         }
35
36         if has_role('bugs_mirror') {
37                 include roles::bugs_mirror
38         }
39
40         if has_role('bugs_base') {
41                 ssl::service { 'bugs.debian.org':
42                         notify => Service['apache2'],
43                 }
44         }
45         if has_role('bugs_master') {
46                 ssl::service { 'bugs-master.debian.org':
47                         notify => Service['apache2'],
48                 }
49         }
50
51         if has_role('ftp_master') {
52                 include roles::ftp_master
53                 include roles::dakmaster
54         }
55
56         if has_role('api.ftp-master') {
57                 ssl::service { 'api.ftp-master.debian.org':
58                         notify => Service['apache2'],
59                 }
60         }
61
62         # XXX: turn this into a real role
63         if getfromhash($site::nodeinfo, 'apache2_security_mirror') {
64                 include roles::security_mirror
65         }
66
67         # XXX: turn this into a real role
68         if getfromhash($site::nodeinfo, 'apache2_www_mirror') {
69                 include roles::www_mirror
70         }
71
72         if has_role('ftp.d.o') {
73                 include roles::ftp
74         }
75
76         if has_role('ftp.upload.d.o') {
77                 include roles::ftp_upload
78         }
79
80         if has_role('ssh.upload.d.o') {
81                 include roles::ssh_upload
82         }
83
84         if has_role('git_master') {
85                 include roles::git_master
86         }
87
88         if has_role('people') {
89                 ssl::service { 'people.debian.org':
90                         notify => Service['apache2'],
91                 }
92         }
93
94         if has_role('security_master') {
95                 include roles::security_master
96                 include roles::dakmaster
97         }
98
99         if has_role('www_master') {
100                 include roles::www_master
101         }
102
103         if has_role('keyring') {
104                 include roles::keyring
105         }
106
107         if has_role('wiki') {
108                 include roles::wiki
109         }
110
111         if has_role('syncproxy') {
112                 include roles::syncproxy
113         }
114
115         if has_role('static_master') {
116                 include roles::static_master
117         }
118
119         if has_role('static_mirror') {
120                 include roles::static_mirror
121         } elsif has_role('static_source') {
122                 include roles::static_source
123         }
124
125         if has_role('weblog_provider') {
126                 include roles::weblog_provider
127         }
128
129         if has_role('mailrelay') {
130                 include roles::mailrelay
131         }
132
133         if has_role('pubsub') {
134                 include roles::pubsub
135         }
136
137         if has_role('dbmaster') {
138                 include roles::dbmaster
139         }
140
141         if has_role('dns_primary') {
142                 include named::primary
143         }
144
145         if has_role('weblog_destination') {
146                 include roles::weblog_destination
147         }
148
149         if has_role('vote') {
150                 include roles::vote
151         }
152
153         if has_role('security_tracker') {
154                 include roles::security_tracker
155         }
156
157         if has_role('lists') {
158                 include roles::lists
159         }
160
161         if has_role('list_search') {
162                 include roles::listsearch
163         }
164
165         if has_role('rtmaster') {
166                 include roles::rtmaster
167         }
168
169         if has_role('udd') {
170                 include roles::udd
171         }
172
173         if has_role('sso') {
174                 include roles::sso
175         }
176
177         if has_role('sso_rp') {
178                 include roles::sso_rp
179         }
180
181         if has_role('tracker') {
182                 include roles::tracker
183         }
184
185         if has_role('buildd_master') {
186                 include roles::buildd_master
187         }
188
189         if has_role('buildd_ports_master') {
190                 include roles::buildd_ports_master
191         }
192
193         if has_role('piuparts') {
194                 include roles::piuparts
195         }
196
197         if has_role('contributors') {
198                 include roles::contributors
199         }
200
201         if has_role('nm') {
202                 include roles::nm
203         }
204
205         if has_role('release') {
206                 include roles::release
207         }
208
209         if has_role('rtc') {
210                 include roles::rtc
211         }
212
213         if has_role('jenkins') {
214                 include roles::jenkins
215         }
216
217         if has_role('keystone') {
218                 include roles::keystone
219         }
220         if has_role('keystone_rabbitmq') {
221                 include roles::keystone::rabbitmq
222         }
223
224         if has_role('memcached') {
225                 include roles::memcached
226         }
227
228         if has_role('postgres_backup_server') {
229                 include postgres::backup_server
230         }
231
232         if has_role('packages') {
233                 ssl::service { 'packages.debian.org':
234                         notify => Service['apache2'],
235                 }
236         }
237
238         if has_role('qamaster') {
239                 ssl::service { 'qa.debian.org':
240                         notify => Service['apache2'],
241                 }
242         }
243
244         if has_role('packagesqamaster') {
245                 ssl::service { 'packages.qa.debian.org':
246                         notify => Service['apache2'],
247                 }
248         }
249
250         if has_role('gobby_debian_org') {
251                 ssl::service { 'gobby.debian.org':
252                         notify => Service['apache2'],
253                 }
254         }
255
256         if has_role('search_backend') {
257                 include search_backend
258         }
259         if has_role('search_frontend') {
260                 include search_frontend
261         }
262
263         if has_role('dgit_browse') {
264                 include dgit_browse
265         }
266         if has_role('dgit_git') {
267                 include dgit_git
268         }
269
270         if $::hostname in [lw01, lw02, lw03, lw04] {
271                 include snapshot
272         }
273 }