Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E28A7F222 for ; Fri, 29 Mar 2013 23:35:55 +0000 (UTC) Received: (qmail 64218 invoked by uid 500); 29 Mar 2013 23:35:52 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 64130 invoked by uid 500); 29 Mar 2013 23:35:52 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 63675 invoked by uid 99); 29 Mar 2013 23:35:52 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Mar 2013 23:35:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2186B834352; Fri, 29 Mar 2013 23:35:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mchen@apache.org To: commits@cloudstack.apache.org Date: Fri, 29 Mar 2013 23:36:10 -0000 Message-Id: In-Reply-To: <074bb17f95a142908f6b8dcf07bc1cd4@git.apache.org> References: <074bb17f95a142908f6b8dcf07bc1cd4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [20/35] git commit: updated refs/heads/object_store to e64030a Zone wide primary storage is not supported for Xenserver as the Hypervisor but for KVM only Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6092721a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6092721a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6092721a Branch: refs/heads/object_store Commit: 6092721a22fde1bd19811c3e0c8e7d440fc5b4f3 Parents: 5259a13 Author: Pranav Saxena Authored: Fri Mar 29 20:49:06 2013 +0530 Committer: Pranav Saxena Committed: Fri Mar 29 20:49:06 2013 +0530 ---------------------------------------------------------------------- ui/scripts/zoneWizard.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6092721a/ui/scripts/zoneWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js index 11db4db..a64c86a 100755 --- a/ui/scripts/zoneWizard.js +++ b/ui/scripts/zoneWizard.js @@ -1196,8 +1196,8 @@ return; } - // ZWPS not supported for Xenserver - if(selectedHypervisorObj.hypervisortype == "XenServer"){ + // ZWPS is supported only for KVM as the hypervisor + if(selectedHypervisorObj.hypervisortype != "KVM"){ var scope=[]; scope.push({ id: 'cluster', description: _l('label.cluster') }); scope.push({ id: 'host', description: _l('label.host') });