From ce1058dfedb737a4e1e70f3339b7c0dc8aac2f9c Mon Sep 17 00:00:00 2001 From: Marc Jay Date: Sun, 12 Apr 2020 01:22:34 +0100 Subject: [PATCH] Remove the varying number of days in the message so that message stays consistent over time --- checks/check_extra774 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checks/check_extra774 b/checks/check_extra774 index 0f882b45..a5ef1580 100644 --- a/checks/check_extra774 +++ b/checks/check_extra774 @@ -30,9 +30,9 @@ extra774(){ user_created_date=$(cat $TEMP_REPORT_FILE|awk -F, '{ print $1,$3 }' |grep "^$i " |awk '{ print $2 }') days_since_user_created=$(how_many_days_from_today ${user_created_date%T*}) if [ "$days_since_user_created" -lt "$MAX_DAYS" ];then - textFail "User $user has never used console login since they were created ${days_since_user_created} days ago" + textFail "User $user has never used console login since they were created over ${MAX_DAYS#-} days ago" else - textInfo "User $user has not used console login since they were created ${days_since_user_created} days ago" + textInfo "User $user has not used console login since they were created" fi else days_not_in_use=$(how_many_days_from_today ${last_login_date%T*})