forked from josch/mmdebstrap
make_mirror.sh: only (u)mount cover_db.img if it exists
This commit is contained in:
parent
4ef1eda200
commit
f4f6200f36
1 changed files with 8 additions and 4 deletions
|
@ -197,12 +197,16 @@ cat << 'END' > worker.sh
|
|||
mount -t 9p -o trans=virtio,access=any mmdebstrap /mnt
|
||||
(
|
||||
cd /mnt;
|
||||
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=$?
|
||||
if [ -e cover_db.img ]; then
|
||||
df -h cover_db
|
||||
umount cover_db
|
||||
fi
|
||||
echo $ret
|
||||
) > /mnt/result.txt 2>&1
|
||||
umount /mnt
|
||||
|
|
Loading…
Reference in a new issue