# HG changeset patch # User IBBoard # Date 1465045657 -3600 # Node ID 34302ede8d87642845f9fd767a316a996bc4c5cb # Parent 5967c1b18860ecb8848f2c9d6651b293bc9bb4c2 Make sure our websites load after ALL other Apache config If we don't do this then statements in vhosts probably won't work, because the load will be done in named config file that seems to get parsed *after* the vhost diff -r 5967c1b18860 -r 34302ede8d87 modules/apache/manifests/vhost.pp --- a/modules/apache/manifests/vhost.pp Sat Jun 04 14:06:15 2016 +0100 +++ b/modules/apache/manifests/vhost.pp Sat Jun 04 14:07:37 2016 +0100 @@ -440,7 +440,7 @@ concat { "${priority_real}${filename}.conf": ensure => $ensure, - path => "${::apache::vhost_dir}/${priority_real}${filename}.conf", + path => "${::apache::vhost_dir}/zzz-${priority_real}${filename}.conf", owner => 'root', group => $::apache::params::root_group, mode => '0644',