diff options
-rw-r--r-- | manifests/command/smtp.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/command/smtp.pp b/manifests/command/smtp.pp index f320f1c..a887e0a 100644 --- a/manifests/command/smtp.pp +++ b/manifests/command/smtp.pp @@ -1,7 +1,7 @@ class nagios::command::smtp { case $operatingsystem { debian,ubuntu: { - nagios_command{ + nagios_command { 'check_smtp_tls': command_line => '$USER1$/check_smtp -H $ARG1$ -p $ARG2$ -S'; 'check_smtp_cert': @@ -11,7 +11,7 @@ class nagios::command::smtp { } } default: { - nagios_command{ + nagios_command { 'check_smtp': command_line => '$USER1$/check_smtp -H $ARG1$ -p $ARG2$'; 'check_smtp_tls': |