Add Class[icingaweb2] w/ File[icingaweb2cfgDir]

refs #6842
This commit is contained in:
Alexander Klimov 2014-09-15 12:23:09 +02:00
parent d45f729ce5
commit b6671c84fd

View File

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