and more comments

This commit is contained in:
inxi-svn 2010-02-01 06:22:43 +00:00
parent 0a7cdb5ab7
commit 58d12b30ab

2
inxi
View file

@ -3265,6 +3265,7 @@ $repo_data_working"
REPO_FILE_ID='arch repo servers' REPO_FILE_ID='arch repo servers'
# get list of mirror include files, trim white space off ends # get list of mirror include files, trim white space off ends
repo_data_working="$( grep -i '^Include' $pacman_conf | grep -vi 'IncludePath' | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' )" repo_data_working="$( grep -i '^Include' $pacman_conf | grep -vi 'IncludePath' | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' )"
# sort into unique paths only, to be used to search for server = data
repo_data_working=$( sort -bu <<< "$repo_data_working" | uniq ) repo_data_working=$( sort -bu <<< "$repo_data_working" | uniq )
repo_data_working="$repo_data_working $pacman_conf" repo_data_working="$repo_data_working $pacman_conf"
for repo_file in $repo_data_working for repo_file in $repo_data_working
@ -3272,6 +3273,7 @@ $repo_data_working"
# inserting a new line after each found / processed match # inserting a new line after each found / processed match
repo_data_working2="$repo_data_working2$( grep -i '^Server' $repo_file | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' | sed -r 's|(.*)|'$repo_file':\1\\n|' )" repo_data_working2="$repo_data_working2$( grep -i '^Server' $repo_file | cut -d '=' -f 2 | sed 's|^[[:space:]]$||g' | sed -r 's|(.*)|'$repo_file':\1\\n|' )"
done done
# execute line breaks
REPO_DATA="$( echo -e $repo_data_working2 )" REPO_DATA="$( echo -e $repo_data_working2 )"
fi fi
eval $LOGFE eval $LOGFE