From ed7a1a49fa3038916c8f28fa7027d185518a7a55 Mon Sep 17 00:00:00 2001 From: erwinschliske Date: Tue, 27 May 2014 14:31:15 +0200 Subject: [PATCH] Update check-cisco.pl typo --- nagios/check-cisco.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nagios/check-cisco.pl b/nagios/check-cisco.pl index d6ed570..f8f6ae7 100755 --- a/nagios/check-cisco.pl +++ b/nagios/check-cisco.pl @@ -205,10 +205,10 @@ if($check_type =~ /^temp/) { } if($temp <= $warn) { $stat = 0; - $msg = "Temperature: OK - Tempeture is $temp Celsius"; + $msg = "Temperature: OK - Temperature is $temp Celsius"; } elsif($temp > $warn and $temp < $crit) { $stat = 1; - $msg = "Temperature: Warn - Tempeture is $temp Celsius"; + $msg = "Temperature: Warn - Temperature is $temp Celsius"; } elsif($temp >= $crit) { $stat = 2; $msg = "Temperature: CRIT - Tempeture is $temp Celsius";