hw-test/scripts/watcher-badblocks

25 lines
351 B
Bash
Executable file

#!/bin/bash
if [[ -z $OUTPUT_DIR ]] ; then
source scan-dmidecode
fi
RUNNING=0
while [[ $RUNNING == 0 ]] ; do
sleep 1
if [[ -f /run/badblocks.waiting ]] ; then
RUNNING=1
fi
done
sleep 5
tail -Fq /run/*.badblocks.out &
TAIL_PID=`jobs -p %+`
while [[ -f /run/badblocks.waiting ]] ; do
sleep 1
done
kill $TAIL_PID
rm -vf /run/*.badblocks.out