]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/manifests/static_mirror.pp
Add lintian vhost
[dsa-puppet.git] / modules / roles / manifests / static_mirror.pp
1 class roles::static_mirror {
2
3         include roles::static_source
4         include apache2::cache
5
6         package { 'libapache2-mod-geoip': ensure => installed, }
7         package { 'geoip-database': ensure => installed, }
8
9         apache2::module { 'include': }
10         apache2::module { 'ssl': }
11         apache2::module { 'geoip': require => [Package['libapache2-mod-geoip'], Package['geoip-database']]; }
12
13         file { '/usr/local/bin/static-mirror-run':
14                 source => 'puppet:///modules/roles/static-mirroring/static-mirror-run',
15                 mode   => '0555',
16         }
17
18         file { '/srv/static.debian.org':
19                 ensure => directory,
20                 owner  => staticsync,
21                 group  => staticsync,
22                 mode   => '02755'
23         }
24
25         file { '/etc/cron.d/puppet-static-mirror':
26                         content => "PATH=/usr/local/bin:/usr/bin:/bin\n@reboot staticsync sleep 60; awk '!/^ *(#|$)/ {print \$1, \$2}' /etc/static-components.conf | while read master component; do static-mirror-run --one-stage /srv/static.debian.org/mirrors/\$component \"\$master:\$component/-live-\" > /dev/null; done\n",
27         }
28
29         $vhost_listen = $::hostname ? {
30                 klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80',
31                 default => '*:80',
32         }
33         $vhost_listen_443 = $::hostname ? {
34                 klecker => '130.89.148.14:443 [2001:610:1908:b000::148:14]:443',
35                 default => '*:443',
36         }
37
38         apache2::config { 'local-static-vhost.conf':
39                 content => template('roles/static-mirroring/static-vhost.conf.erb'),
40         }
41
42         apache2::site { '010-planet.debian.org':
43                 site    => 'planet.debian.org',
44                 content => template('roles/static-mirroring/vhost/planet.debian.org.erb'),
45         }
46
47         apache2::site { '010-lintian.debian.org':
48                 site    => 'lintian.debian.org',
49                 content => template('roles/static-mirroring/vhost/lintian.debian.org.erb'),
50         }
51
52         apache2::site { '010-static-vhosts-simple':
53                 site => 'static-vhosts-simple',
54                 content => template('roles/static-mirroring/vhost/static-vhosts-simple.erb'),
55         }
56
57         $wwwdo_document_root = '/srv/static.debian.org/mirrors/www.debian.org/cur'
58         apache2::site { '005-www.debian.org':
59                 site   => 'www.debian.org',
60                 content => template('roles/apache-www.debian.org.erb'),
61         }
62
63         ssl::service { 'dsa.debian.org':
64                 notify => Service['apache2'],
65         }
66         ssl::service { 'www.debian.org':
67                 notify => Service['apache2'],
68         }
69         ssl::service { 'rtc.debian.org':
70                 notify => Service['apache2'],
71         }
72 }