From 28342ba418ede266526aaaad5c89834883b4b16e Mon Sep 17 00:00:00 2001 From: mh Date: Wed, 20 Oct 2010 23:12:43 +0200 Subject: introduce that port also can't be the name, fix ensure problem --- manifests/nagios.pp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/manifests/nagios.pp b/manifests/nagios.pp index 1500a09..4971f65 100644 --- a/manifests/nagios.pp +++ b/manifests/nagios.pp @@ -1,18 +1,23 @@ define sshd::nagios( + $port = 'absent', $ensure = 'present', $check_hostname = 'absent' ) { + $real_port = $port ? { + 'absent' => $name, + default => $port, + } case $check_hostname { 'absent': { nagios::service{"ssh_port_${name}": - ensure => $esnure, - check_command => "check_ssh_port!$name" + ensure => $ensure, + check_command => "check_ssh_port!$port" } } default: { - nagios::service{"ssh_port_host_${name}_${check_hostname}": - ensure => $esnure, - check_command => "check_ssh_port_host!${name}!${check_hostname}" + nagios::service{"ssh_port_host_${name}": + ensure => $ensure, + check_command => "check_ssh_port_host!${port}!${check_hostname}" } } } -- cgit v1.2.3