just came across this small bug in the check license script that is available at http://assets.nagios.com/downloads/nagi ... license.sh
Line 197 is
Code: Select all
elif [[ $days -lt $crit ]]; thenchanging the above code to
Code: Select all
elif [[ $days -le $crit ]]; thenit only causes an error on the one day that they match, but thought id let you know