tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

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

Fix two instances of SC2004 in nagios-check-tor-authority

Diffstat:
Mcontrib/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 @@ -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