make_mirror.sh: only (u)mount cover_db.img if it exists

pull/1/head
parent 4ef1eda200
commit f4f6200f36
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -197,12 +197,16 @@ cat << 'END' > worker.sh
mount -t 9p -o trans=virtio,access=any mmdebstrap /mnt
(
cd /mnt;
mkdir -p cover_db
mount -o loop,umask=000 cover_db.img cover_db
if [ -e cover_db.img ]; then
mkdir -p cover_db
mount -o loop,umask=000 cover_db.img cover_db
fi
sh ./test.sh
ret=$?
df -h cover_db
umount cover_db
if [ -e cover_db.img ]; then
df -h cover_db
umount cover_db
fi
echo $ret
) > /mnt/result.txt 2>&1
umount /mnt

Loading…
Cancel
Save