first commit
This commit is contained in:
5
etc_org/cron.daily/apport
Executable file
5
etc_org/cron.daily/apport
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh -e
|
||||
# clean all crash reports which are older than a week.
|
||||
[ -d /var/crash ] || exit 0
|
||||
find /var/crash/. ! -name . -prune -type f \( \( -size 0 -a \! -name '*.upload*' -a \! -name '*.drkonqi*' \) -o -mtime +7 \) -exec rm -f -- '{}' \;
|
||||
find /var/crash/. ! -name . -prune -type d -regextype posix-extended -regex '.*/[0-9]{12}$' \( -mtime +7 \) -exec rm -Rf -- '{}' \;
|
Reference in New Issue
Block a user