From 8a7f9ddad55288bfd7c8c161963e02d244500c3a Mon Sep 17 00:00:00 2001 From: Charles Herlin Date: Thu, 22 Mar 2018 18:17:17 +0100 Subject: [PATCH] Change from CIS reco and only warn (no crit) if logfile does not exist --- bin/hardening/8.2.4_set_logfile_perm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hardening/8.2.4_set_logfile_perm.sh b/bin/hardening/8.2.4_set_logfile_perm.sh index c599688..88566b5 100755 --- a/bin/hardening/8.2.4_set_logfile_perm.sh +++ b/bin/hardening/8.2.4_set_logfile_perm.sh @@ -23,7 +23,7 @@ audit () { for FILE in $FILES; do does_file_exist $FILE if [ $FNRET != 0 ]; then - crit "$FILE does not exist" + warn "$FILE does not exist" else has_file_correct_ownership $FILE $USER $GROUP if [ $FNRET = 0 ]; then