From b8070c8465733b8afd237082104ef2d362422d3d Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sun, 5 May 2019 20:02:43 +0200 Subject: [PATCH] logsclaner init.d script: minor fix --- Full/system/etc/init.d/logscleaner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Full/system/etc/init.d/logscleaner b/Full/system/etc/init.d/logscleaner index 3979dab..beab334 100755 --- a/Full/system/etc/init.d/logscleaner +++ b/Full/system/etc/init.d/logscleaner @@ -24,7 +24,7 @@ done # filemask: *.* for logpath in /cache /cache/recovery /data/system/dropbox; do - find ${logpath} -mtime +8 -type f -name '*.apk' -exec rm -f {} \; + find ${logpath} -mtime +8 -type f -name '*.*' -exec rm -f {} \; done echo "Automatic Cleaning finished at $(date +"%m-%d-%Y %H:%M:%S")"