[tor-commits] [tor/master] Fix two instances of SC2004 in nagios-check-tor-authority

nickm at torproject.org nickm at torproject.org
Tue Feb 19 16:32:39 UTC 2019


commit 1fc8bbff9cefd243725c04890426a28204d7b0d2
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date:   Wed Feb 6 10:20:11 2019 +0200

    Fix two instances of SC2004 in nagios-check-tor-authority
---
 contrib/dirauth-tools/nagios-check-tor-authority-cert | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/dirauth-tools/nagios-check-tor-authority-cert b/contrib/dirauth-tools/nagios-check-tor-authority-cert
index 46dc7284b..7a60da16f 100755
--- a/contrib/dirauth-tools/nagios-check-tor-authority-cert
+++ b/contrib/dirauth-tools/nagios-check-tor-authority-cert
@@ -74,10 +74,10 @@ now=$(date +%s)
 if [ "$now" -ge "$expiryunix" ]; then
 	echo "CRITICAL: Certificate expired $expirydate (authority $identity)."
 	exit 2
-elif [ "$(( $now + 7*24*60*60 ))" -ge "$expiryunix" ]; then
+elif [ "$(( now + 7*24*60*60 ))" -ge "$expiryunix" ]; then
 	echo "CRITICAL: Certificate expires $expirydate (authority $identity)."
 	exit 2
-elif [ "$(( $now + 30*24*60*60 ))" -ge "$expiryunix" ]; then
+elif [ "$(( now + 30*24*60*60 ))" -ge "$expiryunix" ]; then
 	echo "WARNING: Certificate expires $expirydate (authority $identity)."
 	exit 1
 else





More information about the tor-commits mailing list