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'], + } +}