From db2d3e45c5d37424399fa2a2d195019512e2bbcf Mon Sep 17 00:00:00 2001 From: Jaime Melis Date: Thu, 29 Mar 2012 13:42:49 +0200 Subject: [PATCH] Fixed bug: using qemu-img convert instead of mv for tm/shared (cherry picked from commit ee2c1704fd823372da50035315f8fe0c2bc32e1e) --- src/tm_mad/shared/mvds | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tm_mad/shared/mvds b/src/tm_mad/shared/mvds index b44d724c41..72518d5d41 100755 --- a/src/tm_mad/shared/mvds +++ b/src/tm_mad/shared/mvds @@ -56,8 +56,7 @@ DST_READLN=\$($READLINK -f $DST_PATH) if [ \( -L $SRC \) -a \( "\$SRC_READLN" = "\$DST_READLN" \) ] ; then echo "Not moving files to image repo, they are the same" else - qemu-img convert $SRC_PATH -O qcow2 $DST_PATH - rm $SRC_PATH + mv -f $SRC_PATH $DST_PATH fi EOF )