]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/manifests/static_mirror.pp
fca65b443dbbf2b26adb10b0174234aac00478da
[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 { 'rewrite': }
10         apache2::module { 'include': }
11         apache2::module { 'ssl': }
12         apache2::module { 'geoip': require => [Package['libapache2-mod-geoip'], Package['geoip-database']]; }
13
14         file { '/usr/local/bin/static-mirror-run':
15                 source => 'puppet:///modules/roles/static-mirroring/static-mirror-run',
16                 mode   => '0555',
17         }
18
19         file { '/srv/static.debian.org':
20                 ensure => directory,
21                 owner  => staticsync,
22                 group  => staticsync,
23                 mode   => '02755'
24         }
25
26         file { '/etc/cron.d/puppet-static-mirror':
27                         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",
28         }
29
30         $vhost_listen = $::hostname ? {
31                 klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80',
32                 default => '*:80',
33         }
34         $vhost_listen_443 = $::hostname ? {
35                 klecker => '130.89.148.14:443 [2001:610:1908:b000::148:14]:443',
36                 default => '*:443',
37         }
38
39         apache2::config { 'local-static-vhost.conf':
40                 content => template('roles/static-mirroring/static-vhost.conf.erb'),
41         }
42
43         apache2::site { '010-planet.debian.org':
44                 site    => 'planet.debian.org',
45                 content => template('roles/static-mirroring/vhost/planet.debian.org.erb'),
46         }
47
48         apache2::site { '010-static-vhosts-simple':
49                 site => 'static-vhosts-simple',
50                 content => template('roles/static-mirroring/vhost/static-vhosts-simple.erb'),
51         }
52
53         $wwwdo_document_root = '/srv/static.debian.org/mirrors/www.debian.org/cur'
54         apache2::site { '010-www.debian.org':
55                 site   => 'www.debian.org',
56                 content => template('roles/apache-www.debian.org.erb'),
57         }
58
59         ssl::service { 'dsa.debian.org':
60                 notify => Service['apache2'],
61         }
62         ssl::service { 'www.debian.org':
63                 notify => Service['apache2'],
64         }
65 }