From 1c40da0835095344be0379182c901165f5332aa9 Mon Sep 17 00:00:00 2001 From: Morgan Haskel Date: Fri, 26 Sep 2014 15:24:06 -0400 Subject: [PATCH] MODULES-1348 - apache::vhost concat ordering Need to set `order => 'numeric'` for the concat resource in apache::vhost so that the fragments get concatenated in the correct order. --- manifests/vhost.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/vhost.pp b/manifests/vhost.pp index 762aa28fb..7fcfd3df1 100644 --- a/manifests/vhost.pp +++ b/manifests/vhost.pp @@ -395,6 +395,7 @@ owner => 'root', group => $::apache::params::root_group, mode => '0644', + order => 'numeric', require => Package['httpd'], notify => Service['httpd'], }