mirror of https://github.com/Icinga/icinga2.git
18 lines
463 B
Puppet
18 lines
463 B
Puppet
include apache
|
|
include icinga-classicui
|
|
include icinga-web
|
|
include nagios-plugins
|
|
|
|
# icinga 2 docs at /icinga2-doc
|
|
file { '/etc/httpd/conf.d/icinga2-doc.conf':
|
|
source => 'puppet:////vagrant/.vagrant-puppet/files/etc/httpd/conf.d/icinga2-doc.conf',
|
|
require => [ Package['apache'], Package['icinga2-doc'] ],
|
|
notify => Service['apache']
|
|
}
|
|
|
|
file { '/etc/motd':
|
|
source => 'puppet:////vagrant/.vagrant-puppet/files/etc/motd',
|
|
owner => root,
|
|
group => root
|
|
}
|