There's an mistake in patch 33327.
See https://gerrit.opnfv.org/gerrit/#/c/33327/
The cleanup function was called twice, so the image file was deleted.
Change-Id: I5fe6a90b46739d1c6d8b66365d2c8e55350cde00
Signed-off-by: Alex Yang <yangyang1@zte.com.cn>
kpartx -dv $raw_imgfile || eliminate
fi
rm -f $raw_imgfile
- if [ -f $imgfile ]; then
- rm -rf $imgfile
- fi
rm -rf $mountdir
}
main() {
cleanup
+ if [ -f $imgfile ]; then
+ rm -rf $imgfile
+ fi
trap "error_trap" EXIT SIGTERM