/etc/cron.daily
NameSizeModeActions
.placeholder1020644editdlrm
apache25390755editdlrm
apport3760755editdlrm
apt-compat14780755editdlrm
bsdmainutils.dpkg-remove3550755editdlrm
do-agent810755editdlrm
dpkg1230755editdlrm
logrotate3770755editdlrm
man-db13300755editdlrm
Edit: /etc/cron.daily/apport (376B)
#!/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 -- '{}' \;