summaryrefslogtreecommitdiff
path: root/manifests/debian/apache.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2015-10-25 14:43:23 +0100
committermh <mh@immerda.ch>2015-10-25 14:44:25 +0100
commitedd580ab2dc92adcb8291fd17d268cfbb6226c3b (patch)
tree2c713b514212c71d67ae90d6f31041630941a616 /manifests/debian/apache.pp
parentcfff7d115e4cff2a4aa5bcfbd01e7ebe265b7a48 (diff)
parentf215de3de43f141ae71fd124a84003d157da7295 (diff)
Merge remote-tracking branch 'shared/master'
Diffstat (limited to 'manifests/debian/apache.pp')
-rw-r--r--manifests/debian/apache.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/manifests/debian/apache.pp b/manifests/debian/apache.pp
new file mode 100644
index 0000000..17b60c6
--- /dev/null
+++ b/manifests/debian/apache.pp
@@ -0,0 +1,22 @@
+# 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":
+ 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"],
+ }
+
+}