Return-Path: X-Original-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A50D1E651 for ; Wed, 6 Feb 2013 02:43:37 +0000 (UTC) Received: (qmail 40557 invoked by uid 500); 6 Feb 2013 02:43:31 -0000 Delivered-To: apmail-incubator-cloudstack-commits-archive@incubator.apache.org Received: (qmail 40051 invoked by uid 500); 6 Feb 2013 02:43:31 -0000 Mailing-List: contact cloudstack-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cloudstack-dev@incubator.apache.org Delivered-To: mailing list cloudstack-commits@incubator.apache.org Received: (qmail 38654 invoked by uid 99); 6 Feb 2013 02:43:29 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Feb 2013 02:43:29 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 335F982ABFF; Wed, 6 Feb 2013 02:43:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: edison@apache.org To: cloudstack-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [24/50] [abbrv] git commit: refs/heads/storage_refactor - Summary: Fix improper variable assignment in resizevolume.sh (remove $) Message-Id: <20130206024329.335F982ABFF@tyr.zones.apache.org> Date: Wed, 6 Feb 2013 02:43:29 +0000 (UTC) Summary: Fix improper variable assignment in resizevolume.sh (remove $) Signed-off-by: Marcus Sorensen 1360089640 -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/750fb2c3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/750fb2c3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/750fb2c3 Branch: refs/heads/storage_refactor Commit: 750fb2c31e090d0fc24893131700dd5a17791cc2 Parents: 7f885b6 Author: Marcus Sorensen Authored: Tue Feb 5 11:40:40 2013 -0700 Committer: Marcus Sorensen Committed: Tue Feb 5 11:40:40 2013 -0700 ---------------------------------------------------------------------- scripts/storage/qcow2/resizevolume.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/750fb2c3/scripts/storage/qcow2/resizevolume.sh ---------------------------------------------------------------------- diff --git a/scripts/storage/qcow2/resizevolume.sh b/scripts/storage/qcow2/resizevolume.sh index 2de1f9e..d15513e 100755 --- a/scripts/storage/qcow2/resizevolume.sh +++ b/scripts/storage/qcow2/resizevolume.sh @@ -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