From b6671c84fd47d010d4c96d2b48a80eac11287213 Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Mon, 15 Sep 2014 12:23:09 +0200 Subject: [PATCH] Add Class[icingaweb2] w/ File[icingaweb2cfgDir] refs #6842 --- .../modules/icingaweb2/manifests/init.pp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vagrant-puppet/modules/icingaweb2/manifests/init.pp diff --git a/.vagrant-puppet/modules/icingaweb2/manifests/init.pp b/.vagrant-puppet/modules/icingaweb2/manifests/init.pp new file mode 100644 index 000000000..9b6c5a3a3 --- /dev/null +++ b/.vagrant-puppet/modules/icingaweb2/manifests/init.pp @@ -0,0 +1,13 @@ +class icingaweb2 { + include apache + + file { 'icingaweb2cfgDir': + path => '/etc/icingaweb', + ensure => directory, + links => follow, + owner => 'apache', + group => 'apache', + mode => 6750, + require => Class['apache'], + } +}