module-sshd/manifests/nagios.pp

8 lines
325 B
Puppet

define sshd::nagios(
$check_hostname = 'absent'
) {
case $check_hostname {
'absent': { nagios::service{ "ssh_port_${name}": check_command => "check_ssh_port!$name" } }
default: { nagios::service{"ssh_port_host_${name}_${check_hostname}": check_command => "check_ssh_port_host!${name}!${check_hostname}" } }
}
}