diff --git a/nagios/manifests/target.pp b/nagios/manifests/target.pp index d47d8cf..99f4cbd 100644 --- a/nagios/manifests/target.pp +++ b/nagios/manifests/target.pp @@ -111,6 +111,18 @@ class nagios::target::imaps inherits nagios::target { } +# Configure ipp service target. +# +class nagios::target::ipp inherits nagios::target { + + @@nagios::service { "${::homename}_ipp": + command => "check_http!-p 631", + description => "IPP", + } + +} + + # Configure ldap service target. # class nagios::target::ldap inherits nagios::target { @@ -135,6 +147,18 @@ class nagios::target::ldaps inherits nagios::target { } +# Configure lpd service target. +# +class nagios::target::lpd inherits nagios::target { + + @@nagios::service { "${::homename}_lpd": + command => "check_tcp!515", + description => "LPD", + } + +} + + # Configure pop3 service target. # class nagios::target::pop3s inherits nagios::target {