I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 53ed10cf authored by kytv's avatar kytv
Browse files

typo fix (s/lt/le/)

parent 0859dbe5
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ print_status() { ...@@ -114,7 +114,7 @@ print_status() {
elif [ $DAYS -le $SOON ] && [ $DAYS -gt 0 ]; then elif [ $DAYS -le $SOON ] && [ $DAYS -gt 0 ]; then
echo "****** Check for $i failed, expires in $DAYS days (<= ${SOON}d) ($EXPIRES) ******" echo "****** Check for $i failed, expires in $DAYS days (<= ${SOON}d) ($EXPIRES) ******"
FAIL=1 FAIL=1
elif [ $DAYS -lt $WARN ] && [ $DAYS -gt $SOON ]; then elif [ $DAYS -le $WARN ] && [ $DAYS -gt $SOON ]; then
echo "****** WARNING: $i expires in $DAYS days (<= ${WANT}d) ($EXPIRES) ******" echo "****** WARNING: $i expires in $DAYS days (<= ${WANT}d) ($EXPIRES) ******"
elif [ $DAYS -lt 0 ]; then elif [ $DAYS -lt 0 ]; then
DAYS=$(echo $DAYS | sed 's/^-//') DAYS=$(echo $DAYS | sed 's/^-//')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment