# modified: results/SALOMON-not_installed.txt

#	new file:   test-install
#	deleted:    compare.sh
This commit is contained in:
Easy Build 2017-03-30 11:07:09 +02:00
parent e217327e70
commit a67f5d6819
2 changed files with 23 additions and 15 deletions

View File

@ -0,0 +1,8 @@
not installed ... libX11/1.6.3
not installed ... Perl/5.24.0-GCC-4.9.3-2.25-bare
not installed ... Tk/8.6.4
not installed ... xcb-util-image/0.4.0
not installed ... xcb-util-keysyms/0.4.0
not installed ... xcb-util-renderutil/0.3.9
not installed ... xcb-util-wm/0.4.1
not installed ... xcb-util/0.4.0

View File

@ -12,19 +12,19 @@ fi
printf "Prepare data for analyse ...\n"
ml --show_hidden -t av 2>&1 > /dev/null| awk '{print $1 }' | grep -v "/apps/*" > ml_av
ml --show_hidden -t av 2>&1 > /dev/null| awk '{print $1 }' | grep -v "/apps/*" > /apps/easybuild/easyconfigs-it4i/ml_av
if [ "$1" = "not" ]; then
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep "_not_installed/*" | cut -d '/' -f 7,8 | sed 's/.eb//' > eb-it4i_tmp
echo -n "" >> "results/$NAME-installed_from_not_installed.txt"
echo -n "" >> "results/$NAME-warning-not.txt"
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep "_not_installed/*" | cut -d '/' -f 7,8 | sed 's/.eb//' > /apps/easybuild/easyconfigs-it4i/eb-it4i_tmp
echo -n "" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-installed_from_not_installed.txt"
echo -n "" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-warning-not.txt"
else
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep -v "_not_installed/*" | cut -d '/' -f 6,7 | sed 's/.eb//' > eb-it4i_tmp
echo -n "" >> "results/$NAME-not_installed.txt"
echo -n "" > "results/$NAME-warning.txt"
find /apps/easybuild/easyconfigs-it4i/ -type f -name "*.eb" | grep -v "_not_installed/*" | cut -d '/' -f 6,7 | sed 's/.eb//' > /apps/easybuild/easyconfigs-it4i/eb-it4i_tmp
echo -n "" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-not_installed.txt"
echo -n "" > "/apps/easybuild/easyconfigs-it4i/results/$NAME-warning.txt"
fi
while read i; do a=$(echo $i | cut -d '/' -f 1); b=$(echo $i | sed -rn "s/$a\/$a[-]+(.*)/\1/p"); echo "$a/$b" ;done < <(cat eb-it4i_tmp) > eb-it4i
while read i; do a=$(echo $i | cut -d '/' -f 1); b=$(echo $i | sed -rn "s/$a\/$a[-]+(.*)/\1/p"); echo "$a/$b" ;done < <(cat /apps/easybuild/easyconfigs-it4i/eb-it4i_tmp) > /apps/easybuild/easyconfigs-it4i/eb-it4i
INSTALL="FALSE"
format="%-80s %30s\n"
@ -43,7 +43,7 @@ while read x; do
INSTALL="OK"
break
fi
done < <(cat ml_av)
done < <(cat /apps/easybuild/easyconfigs-it4i/ml_av)
if [ ! "$INSTALL" = "OK" ]; then
if [ -d "/apps/all/$x" ]; then
@ -54,25 +54,25 @@ while read x; do
if [ "$INSTALL" = "OK" ]; then
printf "$format" "$x" "${grn}installed${end}"
if [ "$1" = "not" ]; then
echo "installed from _not_installed ... $x" >> "results/$NAME-installed_from_not_installed.txt"
echo "installed from _not_installed ... $x" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-installed_from_not_installed.txt"
fi
INSTALL="FALSE"
elif [ "$INSTALL" = "WARNING" ]; then
printf "$format" "$x" "${yel}warning${end}"
if [ "$1" = "not" ]; then
echo "warning ... $x" >> "results/$NAME-warning-not.txt"
echo "warning ... $x" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-warning-not.txt"
else
echo "warning ... $x" >> "results/$NAME-warning.txt"
echo "warning ... $x" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-warning.txt"
fi
INSTALL="FALSE"
else
printf "$format" "$x" "${red}not installed${end}"
if [ ! "$1" = "not" ]; then
echo "not installed ... $x" >> "results/$NAME-not_installed.txt"
echo "not installed ... $x" >> "/apps/easybuild/easyconfigs-it4i/results/$NAME-not_installed.txt"
fi
INSTALL="FALSE"
fi
done < <(cat eb-it4i)
done < <(cat /apps/easybuild/easyconfigs-it4i/eb-it4i)
rm eb-it4i ml_av eb-it4i_tmp
rm /apps/easybuild/easyconfigs-it4i/eb-it4i /apps/easybuild/easyconfigs-it4i/ml_av /apps/easybuild/easyconfigs-it4i/eb-it4i_tmp