summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorGabriel Filion <lelutin@gmail.com>2011-12-11 10:19:01 -0500
committerMicah Anderson <micah@riseup.net>2012-04-18 10:50:37 -0400
commit1bc0bdc289ebeb86c6ef84dd931245fdf535d03d (patch)
tree6d0a125cfe33275804d74b4ce52cad3d1571b7c9 /manifests
parent70318606afdd46860dae9a9f680a1309a18543b1 (diff)
Dependency to package missing for File['include_dir']
some runs produce an error because of a missing "require" link from 'include_dir' to the apache package: err: /Stage[main]/Apache::Base/File[include_dir]/ensure: change from absent to directory failed: Cannot create /etc/apache2/include.d; parent directory /etc/apache2 does not exist Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'manifests')
-rw-r--r--manifests/package.pp3
1 files changed, 3 insertions, 0 deletions
diff --git a/manifests/package.pp b/manifests/package.pp
index 9ca5357..aa47c6c 100644
--- a/manifests/package.pp
+++ b/manifests/package.pp
@@ -25,5 +25,8 @@ class apache::package inherits apache::base {
File['htpasswd_dir']{
require => Package[apache],
}
+ File['include_dir']{
+ require => Package[apache],
+ }
}