Skip to content

Commit a91df8f

Browse files
author
Marcus Sorensen
committed
Summary: master - Fix typo in createvolume.sh
Detail: createvolume.sh had '$qemu-img' in one spot instead of '$qemu_img' as it uses everywhere else Signed-off-by: Marcus Sorensen <marcus@betterservers.com> 1354754792 -0700
1 parent 9e90ff5 commit a91df8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/storage/qcow2/createvolume.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ create_from_file() {
9999
local volimg="$2"
100100
local volname=$3
101101
if [ -b $volimg ]; then
102-
$qemu-img convert -f raw -O qcow2 "$volimg" /$volfs/$volname
102+
$qemu_img convert -f raw -O qcow2 "$volimg" /$volfs/$volname
103103
else
104104
$qemu_img convert -f qcow2 -O qcow2 "$volimg" /$volfs/$volname >& /dev/null
105105
fi

0 commit comments

Comments
 (0)