From a5ace512adfb5d3c016a5fe15a5e430d96ce9384 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Fri, 12 Feb 2010 09:01:54 -0500 Subject: [PATCH] Don't use $^T - dangerous as Nagios caches the script! --- check_postgres.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/check_postgres.pl b/check_postgres.pl index 52bed3c71..e5e2c0e4c 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -3733,7 +3733,7 @@ sub check_logfile { ## We now have a logfile (or a template)..parse it into pieces. ## We need at least hour, day, month, year - my @t = localtime $^T; + my @t = localtime; my ($H,$d,$m,$Y) = (sprintf ('%02d',$t[2]),sprintf('%02d',$t[3]),sprintf('%02d',$t[4]+1),$t[5]+1900); if ($logfile !~ $logfilere) { ndie msg('logfile-bad',$logfile); @@ -8073,8 +8073,9 @@ Items not specifically attributed are by Greg Sabino Mullane. =over 4 -=item B +=item B + Don't use $^T in logfile check, as script may be long-running Change the error string for the logfile action for easier exclusion by programs like tail_n_mail -- 2.39.5