summaryrefslogtreecommitdiff
path: root/manifests/debian/apache.pp
blob: 095091e788c5679974976cc33668b700c329c19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Handle files that are specifically needed for nagios with apache on debian
#
# Do not include this class directly. It is included by the nagios class and
# needs variables from it.
#
class nagios::debian::apache {

  include nagios::defaults::vars

  file { "${nagios::defaults::vars::int_cfgdir}/apache2.conf":
    ensure => present,
    source => [ "puppet:///modules/site_nagios/configs/${::fqdn}/apache2.conf",
                'puppet:///modules/site_nagios/configs/apache2.conf',
                'puppet:///modules/nagios/configs/apache2.conf'],
  }

  apache::config::global { 'nagios3.conf':
    ensure  => link,
    target  => "${nagios::defaults::vars::int_cfgdir}/apache2.conf",
    require => File["${nagios::defaults::vars::int_cfgdir}/apache2.conf"],
  }

}