diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-05-30 13:03:46 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-05-30 13:03:46 -0300 |
commit | e608701d84d8f44ee701763dc5cbd52497dbb5c2 (patch) | |
tree | af78f87fce48faa2aeb5b389dec73b7ad8975dd2 | |
parent | c1f38a5da65768324217a2b45179d597210ecc79 (diff) | |
download | puppet-apache-e608701d84d8f44ee701763dc5cbd52497dbb5c2.tar.gz puppet-apache-e608701d84d8f44ee701763dc5cbd52497dbb5c2.tar.bz2 |
Integrated into apache2-bin: libapache2-mod-macro
-rw-r--r-- | manifests/init.pp | 6 |
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": |