From: Michael Vogt Date: Wed, 6 Apr 2005 17:49:40 +0000 (+0000) Subject: * supress output when /var/cache/apt/archives is empty; break when min-age is reached X-Git-Tag: 0.7.21~411 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/3408b58cbff032666298c44e4111e3965ccd3f52 * supress output when /var/cache/apt/archives is empty; break when min-age is reached --- diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 5145a5d2f..2d93a5ba4 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -110,7 +110,7 @@ check_size_constraints() MinAge=$(($MinAge*24*60*60)) # reverse-sort by mtime - for file in $(ls -rt $Cache/*.deb); do + for file in $(ls -rt $Cache/*.deb 2>/dev/null); do du=$(du -s $Cache) size=${du%%/*} # check if the cache is small enough @@ -125,7 +125,7 @@ check_size_constraints() #echo "$file ($delta), $MinAge" if [ $delta -le $MinAge ]; then #echo "Skiping $file (delta=$delta)" - continue + break fi fi