From 8a44be7e1e977bc3d5d7386dce21a46407113d14 Mon Sep 17 00:00:00 2001 From: Xavier leune Date: Mon, 26 May 2014 11:51:09 +0200 Subject: [PATCH] Change inclusion of apache::mod::rewrite in vhost.pp --- manifests/vhost.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/vhost.pp b/manifests/vhost.pp index 45897e8e0..049c85b8c 100644 --- a/manifests/vhost.pp +++ b/manifests/vhost.pp @@ -357,8 +357,8 @@ # Load mod_rewrite if needed and not yet loaded if $rewrites or $rewrite_cond { - if ! defined(Apache::Mod['rewrite']) { - ::apache::mod { 'rewrite': } + if ! defined(Class['apache::mod::rewrite']) { + include ::apache::mod::rewrite } }