summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2015-05-18 10:10:32 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-07-31 17:00:51 -0300
commit0c9425154a211cbd52cfa086aff5e4b84ff704d0 (patch)
tree566907fe8e5e172711a9dd33a4b5070e5ca9f28b /manifests
parent89e4115d2aa3662d165ed9d2f1b34a0b7b60c66f (diff)
downloadpuppet-apache-0c9425154a211cbd52cfa086aff5e4b84ff704d0.tar.gz
puppet-apache-0c9425154a211cbd52cfa086aff5e4b84ff704d0.tar.bz2
ensure conf.d directory
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 5796fe0..5917a3a 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -49,6 +49,14 @@ class apache(
ensure => installed,
}
+ file { "$conf_d":
+ ensure => directory,
+ owner => root,
+ group => root,
+ mode => 0755,
+ require => Package["apache"],
+ }
+
package { "mod_macro":
name => "libapache2-mod-macro",
ensure => installed,