/var/lib/boinc-app-eah-brp/runall.sh is in boinc-app-eah-brp 0.20170426+dfsg-10build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/sh
set -e
BENCHMARKSCRIPT=$(dirname $0)/bench_single.sh
if [ ! -x "$BENCHMARKSCRIPT" ]; then
echo "E: Could not find benchmark script on '$BENCHMARKSCRIPT'."
exit 1
fi
for APP in `ls apps | grep -v archive`; do
echo "I: Starting test with $APP";
$BENCHMARKSCRIPT ${APP} &
done
# wait for boinc_EinsteinRadio_0 creation
sleep 30;
while true; do
for APP in `ls apps | grep -v archive`; do
awk -F"<|>" '/fraction_done/ { print $3 }' ${APP}/boinc_EinsteinRadio_0 ;
done | xargs;
sleep 10;
done
|