sstate-cache-management: rm_by_stamps - remove .siginfo and .done files

* it's possible that corresponding .tgz files were already removed
  (e.g. with -d option and older version of this script) and this
  won't find orphaned .siginfo or .done files to remove
* add sort -u to count files found multiple times only once

(From OE-Core rev: 5a58cd2474ed96d6f58576203bedf8211d309c99)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Martin Jansa 2014-03-29 11:34:11 +01:00 committed by Richard Purdie
parent 42b12dc544
commit 07e632a26c
1 changed files with 5 additions and 5 deletions

View File

@ -341,9 +341,9 @@ rm_by_stamps (){
echo "Done"
# Total number of files including sstate-, .siginfo and .done files
total_files=`find $cache_dir -name 'sstate*' | wc -l`
total_files=`find $cache_dir -type f -name 'sstate*' | wc -l`
# Save all the state file list to a file
find $cache_dir -name 'sstate*.tgz' | sort -u -o $cache_list
find $cache_dir -type f -name 'sstate*' | sort -u -o $cache_list
echo "Figuring out the files which will be removed ... "
for i in $all_sums; do
@ -355,14 +355,14 @@ rm_by_stamps (){
sort -u $keep_list -o $keep_list
to_del=`comm -1 -3 $keep_list $cache_list`
gen_rmlist $rm_list "$to_del"
let total_deleted=`cat $rm_list | wc -w`
let total_deleted=`cat $rm_list | sort -u | wc -w`
if [ $total_deleted -gt 0 ]; then
[ $debug -gt 0 ] && cat $rm_list
[ $debug -gt 0 ] && cat $rm_list | sort -u
read_confirm
if [ "$confirm" = "y" -o "$confirm" = "Y" ]; then
echo "Removing sstate cache files ... ($total_deleted files)"
# Remove them one by one to avoid the argument list too long error
for i in `cat $rm_list`; do
for i in `cat $rm_list | sort -u`; do
rm -f $verbose $i
done
echo "$total_deleted files have been removed"