diff options
author | drebs <drebs@riseup.net> | 2015-05-18 10:10:32 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2015-05-18 10:13:53 -0300 |
commit | afd1a163473f25244afc667313dbdee95fb8b4de (patch) | |
tree | 6afbc7ae0d887a963c4f9f0f7b84590da85ad24b | |
parent | fca5ebe2689bbc1e9b839c1573c42fa1e2271fc3 (diff) | |
download | puppet-apache-afd1a163473f25244afc667313dbdee95fb8b4de.tar.gz puppet-apache-afd1a163473f25244afc667313dbdee95fb8b4de.tar.bz2 |
ensure conf.d directory
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index b06a90b..941d91a 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, |