From 5a58cd2474ed96d6f58576203bedf8211d309c99 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 29 Mar 2014 11:34:11 +0100 Subject: 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 Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- scripts/sstate-cache-management.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh index 34bde01970..ffda05ea3e 100755 --- a/scripts/sstate-cache-management.sh +++ b/scripts/sstate-cache-management.sh @@ -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" -- cgit 1.2.3-korg