From 1b5940cca8c62d5e2694c7da094df800bb501d12 Mon Sep 17 00:00:00 2001 From: Wytze van der Raay Date: Sun, 24 May 2009 18:08:23 +0000 Subject: [PATCH] Increase retention period for CommModule logfiles to at least 2.5 years in accordance with Security Manual 4.2.1 (at least 24/at most 36 months). --- CommModule/logclean.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CommModule/logclean.sh b/CommModule/logclean.sh index a35ed68..99963ee 100755 --- a/CommModule/logclean.sh +++ b/CommModule/logclean.sh @@ -46,8 +46,8 @@ then done fi -# delete old logfiles which have not been modified in at least one year -FILES=`find oldlogs/logfile20*.txt.bz2 -mtime +365 -print` +# delete old logfiles which have not been modified in at least 2.5+ years +FILES=`find oldlogs/logfile20*.txt.bz2 -mtime +913 -print` if [ -n "${FILES}" ] then for F in ${FILES}