You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ml...@apache.org on 2012/12/06 01:48:13 UTC

git commit: Summary: master - Fix typo in createvolume.sh

Updated Branches:
  refs/heads/master 9e90ff58e -> a91df8f32


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 <ma...@betterservers.com> 1354754792 -0700


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/a91df8f3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/a91df8f3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/a91df8f3

Branch: refs/heads/master
Commit: a91df8f32d55a80b9b7021d62a5d92618db3accf
Parents: 9e90ff5
Author: Marcus Sorensen <ma...@betterservers.com>
Authored: Wed Dec 5 17:46:32 2012 -0700
Committer: Marcus Sorensen <ma...@betterservers.com>
Committed: Wed Dec 5 17:46:32 2012 -0700

----------------------------------------------------------------------
 scripts/storage/qcow2/createvolume.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/a91df8f3/scripts/storage/qcow2/createvolume.sh
----------------------------------------------------------------------
diff --git a/scripts/storage/qcow2/createvolume.sh b/scripts/storage/qcow2/createvolume.sh
index cfafed1..10fa6dd 100755
--- a/scripts/storage/qcow2/createvolume.sh
+++ b/scripts/storage/qcow2/createvolume.sh
@@ -99,7 +99,7 @@ create_from_file() {
   local volimg="$2"
   local volname=$3
   if [ -b $volimg ]; then
-      $qemu-img convert -f raw -O qcow2 "$volimg" /$volfs/$volname
+      $qemu_img convert -f raw -O qcow2 "$volimg" /$volfs/$volname
   else
       $qemu_img convert -f qcow2 -O qcow2 "$volimg" /$volfs/$volname >& /dev/null
   fi