summaryrefslogtreecommitdiff
path: root/manifests/pnp4nagios.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/pnp4nagios.pp')
-rw-r--r--manifests/pnp4nagios.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/manifests/pnp4nagios.pp b/manifests/pnp4nagios.pp
new file mode 100644
index 0000000..051bad8
--- /dev/null
+++ b/manifests/pnp4nagios.pp
@@ -0,0 +1,17 @@
+class nagios::pnp4nagios {
+ include nagios::defaults::pnp4nagios
+
+ package { [php5, php5-gd, rrdcollect, rrdtool, librrdp-perl, librrds-perl ]:
+ ensure => installed }
+
+
+ # unfortunatly i didn't find a way to use nagios_host and nagios_service definition, because
+ # imho puppet can't handle the "name" variable needed in these 2 definitions
+ # so we need to copy a file here.
+
+ file { 'pnp4nagios-templates.cfg':
+ path => "$nagios::nagios_cfgdir/conf.d/pnp4nagios-templates.cfg",
+ source => [ "puppet:///modules/site-nagios/pnp4nagios/pnp4nagios-templates.cfg",
+ "puppet:///modules/nagios/pnp4nagios/pnp4nagios-templates.cfg" ]
+ }
+}