summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 34c3021..67e0dd2 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -70,9 +70,13 @@ class apache(
require => Package["apache"],
}
+ # Integrated into apache2-bin
package { "mod_macro":
name => "libapache2-mod-macro",
- ensure => installed,
+ ensure => $::lsbdistcodename ? {
+ 'wheezy' => present,
+ default => absent,
+ },
}
service { "apache2":