From c5a1fed413353f7f474dd055cc9f34a58770f9d1 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 2 Dec 2012 03:23:47 +0100 Subject: fixup: implement basics for cd tests --- bin/cd_tester.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'bin/cd_tester.sh') diff --git a/bin/cd_tester.sh b/bin/cd_tester.sh index 4860683a..00fcb85a 100755 --- a/bin/cd_tester.sh +++ b/bin/cd_tester.sh @@ -27,14 +27,14 @@ export http_proxy="http://localhost:3128" # # init # -rm -f results -mkdir -p results -cd results DISPLAY=$1 NAME=$2 IMAGE_URL=$3 -IMAGE=$(basename $IMAGE_URL) +IMAGE=$(pwd)./$(basename $IMAGE_URL) IMAGE_MNT="/media/cd-$IMAGE.iso" +rm -rf results +mkdir -p results +cd results cleanup_all() { # @@ -44,7 +44,7 @@ cleanup_all() { # # cleanup # - umount $IMAGE_MNT + sudo umount $IMAGE_MNT sudo rm $NAME.qcow # # create video @@ -90,13 +90,13 @@ monitor_installation() { trap cleanup_all INT TERM EXIT -# only wget if $IMAGE is older than a week (60*24*7=10080) +# only download if $IMAGE is older than a week (60*24*7=10080) if test $(find $IMAGE -mmin +10080) ; then rm $IMAGE - wget $IMAGE_URL + curl $IMAGE_URL > $IMAGE fi sudo mkdir -p $IMAGE_MNT -mount -o loop $IMAGE $IMAGE_MNT +sudo mount -o loop $IMAGE $IMAGE_MNT bootstrap monitor_installation -- cgit v1.2.3-70-g09d2