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 62E58110AD for ; Wed, 4 Jun 2014 23:59:03 +0000 (UTC) Received: (qmail 85835 invoked by uid 500); 4 Jun 2014 23:50:14 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 85752 invoked by uid 500); 4 Jun 2014 23:50:14 -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 85341 invoked by uid 99); 4 Jun 2014 23:50:14 -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, 04 Jun 2014 23:50:14 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1C7B494A166; Wed, 4 Jun 2014 23:50:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: edison@apache.org To: commits@cloudstack.apache.org Date: Wed, 04 Jun 2014 23:50:31 -0000 Message-Id: <9ce02066575d4d2aa2e9d76e7c350da4@git.apache.org> In-Reply-To: <3ba4a4995242436aa247ec6cec97c4e5@git.apache.org> References: <3ba4a4995242436aa247ec6cec97c4e5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/50] git commit: updated refs/heads/4.3 to f304df0 CLOUDSTACK-5080: Hypervisor Capabilities table missing entry for Simulator Signed-off-by: Prasanna Santhanam Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1e5415d9 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1e5415d9 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1e5415d9 Branch: refs/heads/4.3 Commit: 1e5415d9612d9226b89bd4906563986feb3a175c Parents: badff18 Author: David Grizzanti Authored: Thu Nov 7 15:27:59 2013 -0500 Committer: ng.tuna@gmail.com Committed: Fri Mar 7 01:08:01 2014 +0700 ---------------------------------------------------------------------- developer/pom.xml | 1 + setup/db/hypervisor_capabilities.simulator.sql | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1e5415d9/developer/pom.xml ---------------------------------------------------------------------- diff --git a/developer/pom.xml b/developer/pom.xml index 5996de7..f2f5f77 100644 --- a/developer/pom.xml +++ b/developer/pom.xml @@ -218,6 +218,7 @@ ${basedir}/target/db/create-schema-simulator.sql ${basedir}/target/db/templates.simulator.sql + ${basedir}/target/db/hypervisor_capabilities.simulator.sql com.cloud.upgrade.DatabaseUpgradeChecker --database=simulator http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1e5415d9/setup/db/hypervisor_capabilities.simulator.sql ---------------------------------------------------------------------- diff --git a/setup/db/hypervisor_capabilities.simulator.sql b/setup/db/hypervisor_capabilities.simulator.sql new file mode 100755 index 0000000..32f9aaa --- /dev/null +++ b/setup/db/hypervisor_capabilities.simulator.sql @@ -0,0 +1,19 @@ +-- Licensed to the Apache Software Foundation (ASF) under one +-- or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information +-- regarding copyright ownership. The ASF licenses this file +-- to you under the Apache License, Version 2.0 (the +-- "License"); you may not use this file except in compliance +-- with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, +-- software distributed under the License is distributed on an +-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +-- KIND, either express or implied. See the License for the +-- specific language governing permissions and limitations +-- under the License. + + +INSERT INTO `cloud`.`hypervisor_capabilities` (uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, max_hosts_per_cluster, storage_motion_supported, vm_snapshot_enabled) values (UUID(), 'Simulator', 'default', 50, 1, 6, NULL, 0, 1);