mirror of https://github.com/apache/cloudstack.git
Summary: Fix improper variable assignment in resizevolume.sh (remove $)
Signed-off-by: Marcus Sorensen <marcus@betterservers.com> 1360089640 -0700
This commit is contained in:
parent
7f885b65f9
commit
750fb2c31e
|
|
@ -177,7 +177,7 @@ resizeqcow2() {
|
|||
fi
|
||||
##### end sanity #####
|
||||
|
||||
$actualsize=`qemu-img info $path | grep "virtual size" | sed -re 's/^.*\(([0-9]+).*$/\1/g'`
|
||||
actualsize=`qemu-img info $path | grep "virtual size" | sed -re 's/^.*\(([0-9]+).*$/\1/g'`
|
||||
|
||||
if [ $actualsize -ne $currentsize ]
|
||||
then
|
||||
|
|
|
|||
Loading…
Reference in New Issue