1 class roles::static_mirror {
3 include roles::static_source
6 package { 'libapache2-mod-geoip': ensure => installed, }
7 package { 'geoip-database': ensure => installed, }
9 apache2::module { 'rewrite': }
10 apache2::module { 'include': }
11 apache2::module { 'ssl': }
12 apache2::module { 'geoip': require => [Package['libapache2-mod-geoip'], Package['geoip-database']]; }
14 file { '/usr/local/bin/static-mirror-run':
15 source => 'puppet:///modules/roles/static-mirroring/static-mirror-run',
19 file { '/srv/static.debian.org':
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",
30 $vhost_listen = $::hostname ? {
31 klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80',
34 $vhost_listen_443 = $::hostname ? {
35 klecker => '130.89.148.14:443 [2001:610:1908:b000::148:14]:443',
39 apache2::config { 'local-static-vhost.conf':
40 content => template('roles/static-mirroring/static-vhost.conf.erb'),
43 apache2::site { '010-planet.debian.org':
44 site => 'planet.debian.org',
45 content => template('roles/static-mirroring/vhost/planet.debian.org.erb'),
48 apache2::site { '010-static-vhosts-simple':
49 site => 'static-vhosts-simple',
50 content => template('roles/static-mirroring/vhost/static-vhosts-simple.erb'),
53 $wwwdo_document_root = '/srv/static.debian.org/mirrors/www.debian.org/cur'
54 apache2::site { '005-www.debian.org':
55 site => 'www.debian.org',
56 content => template('roles/apache-www.debian.org.erb'),
59 ssl::service { 'dsa.debian.org':
60 notify => Service['apache2'],
62 ssl::service { 'www.debian.org':
63 notify => Service['apache2'],
65 ssl::service { 'rtc.debian.org':
66 notify => Service['apache2'],