From 14b12c58a40ec17a2327f7187ae596bebbc6e484 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Mon, 10 Dec 2012 19:54:50 +0000 Subject: apache::base: Add missing require on apache config package --- modules/apache/manifests/base.pp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'modules/apache') diff --git a/modules/apache/manifests/base.pp b/modules/apache/manifests/base.pp index a986d50a..92f55c40 100644 --- a/modules/apache/manifests/base.pp +++ b/modules/apache/manifests/base.pp @@ -17,9 +17,11 @@ class apache::base { apache::config { '/etc/httpd/conf.d/customization.conf': - content => template('apache/customization.conf'); + content => template('apache/customization.conf'), + require => Package[$apache::var::pkg_conf]; '/etc/httpd/conf/vhosts.d/00_default_vhosts.conf': - content => template('apache/00_default_vhosts.conf'); + content => template('apache/00_default_vhosts.conf'), + require => Package[$apache::var::pkg_conf]; } file { '/etc/logrotate.d/httpd': -- cgit v1.2.1