X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Finit.pp;h=32d35ebddf9b449cce01a9b7d592758643f579c7;hb=a1affd759e5210c15dd1430326a4064778c74d3e;hp=cc8573856a2d11bb80cf254c1da8d8515fdf51eb;hpb=7313e43a892f670574ba83c165d15c8e2a0edf6f;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/init.pp b/modules/apache2/manifests/init.pp index cc8573856..32d35ebdd 100644 --- a/modules/apache2/manifests/init.pp +++ b/modules/apache2/manifests/init.pp @@ -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', @@ -138,8 +131,12 @@ class apache2 { munin::check { 'ps_apache2': script => 'ps_', } + # The munin script needs this + package { 'libwww-perl': + ensure => installed, + } - 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': @@ -163,11 +160,8 @@ class apache2 { require => Package['apache2'], } - concat { '/etc/apache2/conf-available/puppet-ssl-key-pins.conf': - owner => root, - group => root, - mode => '0644', - require => Package['apache2'], + apache2::config { 'puppet-ssl-key-pins': + content => template('apache2/ssl-key-pins.erb'), + notify => Exec['service apache2 reload'], } - apache2::config { 'puppet-ssl-key-pins': } }