]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/apache2/manifests/init.pp
install mod-macro everywhere
[dsa-puppet.git] / modules / apache2 / manifests / init.pp
index dec3162d6d6a3c2873145bd169c42806a77c7ff4..a3d47f1a0c00ac4dd3e2892f58db545a7121cbcb 100644 (file)
@@ -1,5 +1,4 @@
 class apache2 {
-
        package { 'apache2':
                ensure => installed,
        }
@@ -12,6 +11,14 @@ class apache2 {
        apache2::module { 'info': }
        apache2::module { 'status': }
 
+       package { 'libapache2-mod-macro':
+               ensure => installed
+       }
+
+       apache2::module { 'macro':
+               require => Package['libapache2-mod-macro']
+       }
+
        apache2::site { '00-default':
                site     => 'default-debian.org',
                content  => template('apache2/default-debian.org.erb'),