Setup /srv/mirrors on all (archvsync-based) mirrors
[mirror/dsa-puppet.git] / modules / roles / manifests / syncproxy.pp
1 class roles::syncproxy {
2         include roles::archvsync_base
3
4         $bind = $::hostname ? {
5                 'milanollo' => '5.153.231.9',
6                 'mirror-anu' => '150.203.164.60',
7                 'mirror-isc' => '149.20.4.16',
8                 'mirror-umn' => '128.101.240.216',
9                 'klecker' => '130.89.148.10',
10                 default => ''
11         }
12         $bind6 = $::hostname ? {
13                 'milanollo' => '2001:41c8:1000:21::21:9',
14                 'mirror-anu' => '2001:388:1034:2900::3c',
15                 'mirror-isc' => '2001:4f8:1:c::16',
16                 'mirror-umn' => '2607:ea00:101:3c0b::1deb:216',
17                 'klecker' => '2001:610:1908:b000::148:10',
18                 default => ''
19         }
20         $syncproxy_name = $::hostname ? {
21                 'milanollo' => 'syncproxy3.eu.debian.org',
22                 'mirror-anu' => 'syncproxy.au.debian.org',
23                 'mirror-isc' => 'syncproxy2.wna.debian.org',
24                 'mirror-umn' => 'syncproxy.cna.debian.org',
25                 'klecker' => 'syncproxy2.eu.debian.org',
26                 default => 'unknown'
27         }
28
29         file { '/etc/rsyncd':
30                 ensure => 'directory'
31         }
32
33         file { '/etc/rsyncd/debian.secrets':
34                 owner => 'root',
35                 group => 'mirroradm',
36                 mode => 0660,
37         }
38
39         if $::apache2 and $syncproxy_name != 'unknown' {
40                 include apache2::ssl
41                 ssl::service { "$syncproxy_name":
42                         notify  => Exec['service apache2 reload'],
43                         key => true,
44                 }
45                 apache2::site { '010-syncproxy.debian.org':
46                         site   => 'syncproxy.debian.org',
47                         content => template('roles/syncproxy/syncproxy.debian.org-apache.erb')
48                 }
49
50                 file { [ '/srv/www/syncproxy.debian.org', '/srv/www/syncproxy.debian.org/htdocs' ]:
51                         ensure  => directory,
52                         mode    => '0755',
53                 }
54                 file { '/srv/www/syncproxy.debian.org/htdocs/index.html':
55                         content => template('roles/syncproxy/syncproxy.debian.org-index.html.erb')
56                 }
57
58                 rsync::site { 'syncproxy':
59                         content => template('roles/syncproxy/rsyncd.conf.erb'),
60                         bind    => $bind,
61                         bind6   => $bind6,
62                         sslname => "$syncproxy_name",
63                 }
64         } else {
65                 rsync::site { 'syncproxy':
66                         content => template('roles/syncproxy/rsyncd.conf.erb'),
67                         bind    => $bind,
68                         bind6   => $bind6,
69                 }
70         }
71 }