ports mirrors
[mirror/dsa-puppet.git] / modules / roles / manifests / ports_mirror.pp
1 class roles::ports_mirror {
2         $vhost_listen = $::hostname ? {
3                 klecker    => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80',
4                 mirror-isc => '149.20.20.22:80 [2001:4f8:8:36::1deb:22]:80',
5                 default => '*:80',
6         }
7
8         apache2::site { '010-ports.mirrors.debian.org':
9                 site   => 'ports.mirrors.debian.org',
10                 content => template('roles/apache-ftp.ports.debian.org.erb'),
11         }
12 }