(#12581) Add explicit ordering for vdir directory

The apache::params::vdir directory depends on the existence of the
httpd package, and trying to include the module may cause an ordering
failure. Added the necessary explicit ordering.
This commit is contained in:
Adrien Thebo 2012-02-11 21:57:46 -08:00
parent c3b7dccd5d
commit f4d287f053
1 changed files with 5 additions and 4 deletions

View File

@ -41,9 +41,10 @@ class apache {
file { $apache::params::vdir:
ensure => directory,
ensure => directory,
recurse => true,
purge => true,
notify => Service['httpd'],
}
purge => true,
notify => Service['httpd'],
require => Package['httpd'],
}
}