kill munin-update jobs older than 2 hours
[mirror/dsa-puppet.git] / modules / apache2 / manifests / init.pp
index decec23..cd4f1f7 100644 (file)
@@ -19,14 +19,7 @@ class apache2 {
        apache2::module { 'info': }
        apache2::module { 'status': }
        apache2::module { 'headers': }
-
-       package { 'libapache2-mod-macro':
-               ensure => installed
-       }
-
-       apache2::module { 'macro':
-               require => Package['libapache2-mod-macro']
-       }
+       apache2::module { 'macro': }
 
        apache2::site { '00-default':
                site     => 'default-debian.org',
@@ -139,7 +132,7 @@ class apache2 {
                script => 'ps_',
        }
 
-       if $::hostname in [beach,buxtehude,picconi,pkgmirror-1and1,pkgmirror-csail] {
+       if $::hostname in [beach,buxtehude,picconi,pkgmirror-csail] {
                include apache2::dynamic
        } else {
                @ferm::rule { 'dsa-http':
@@ -162,4 +155,9 @@ class apache2 {
                refreshonly => true,
                require =>  Package['apache2'],
        }
+
+       apache2::config { 'puppet-ssl-key-pins':
+               content => template('apache2/ssl-key-pins.erb'),
+               notify  => Exec['service apache2 reload'],
+       }
 }