The image file is deleted mistakenly 95/33395/1
authorAlex Yang <yangyang1@zte.com.cn>
Sat, 15 Apr 2017 18:18:38 +0000 (02:18 +0800)
committerAlex Yang <yangyang1@zte.com.cn>
Sat, 15 Apr 2017 18:18:38 +0000 (02:18 +0800)
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>
tools/daisy-img-modify.sh

index f172cee..90910a1 100755 (executable)
@@ -211,9 +211,6 @@ cleanup() {
         kpartx -dv $raw_imgfile || eliminate
     fi
     rm -f $raw_imgfile
-    if [ -f $imgfile ]; then
-        rm -rf $imgfile
-    fi
     rm -rf $mountdir
 }
 
@@ -239,6 +236,9 @@ error_trap()
 
 main() {
     cleanup
+    if [ -f $imgfile ]; then
+        rm -rf $imgfile
+    fi
 
     trap "error_trap" EXIT SIGTERM