You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2012/08/17 00:03:22 UTC

git commit: CS-16037: db upgrade - fixed component/category/description fields for several global configs

Updated Branches:
  refs/heads/master b9e8b5152 -> 0c0165e19


CS-16037: db upgrade - fixed component/category/description fields for several global configs


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

Branch: refs/heads/master
Commit: 0c0165e19b18f4207c7c70eb12c29d1b3e445d46
Parents: b9e8b51
Author: Alena Prokharchyk <al...@citrix.com>
Authored: Thu Aug 16 14:57:14 2012 -0700
Committer: Alena Prokharchyk <al...@citrix.com>
Committed: Thu Aug 16 15:03:16 2012 -0700

----------------------------------------------------------------------
 setup/db/db/schema-302to40.sql |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/0c0165e1/setup/db/db/schema-302to40.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-302to40.sql b/setup/db/db/schema-302to40.sql
index b6ef131..4ba6344 100644
--- a/setup/db/db/schema-302to40.sql
+++ b/setup/db/db/schema-302to40.sql
@@ -452,3 +452,13 @@ CREATE TABLE `cloud`.`s2s_vpn_connection` (
   CONSTRAINT `uc_s2s_vpn_connection__uuid` UNIQUE (`uuid`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+UPDATE `cloud`.`configuration` SET category='Network' WHERE name='guest.domain.suffix';
+UPDATE `cloud`.`configuration` SET component='management-server' WHERE name='agent.lb.enabled';
+UPDATE `cloud`.`configuration` SET component='StorageManager' WHERE name='backup.snapshot.wait';
+UPDATE `cloud`.`configuration` SET component='StorageManager' WHERE name='copy.volume.wait';
+UPDATE `cloud`.`configuration` SET component='StorageManager' WHERE name='create.volume.from.snapshot.wait';
+UPDATE `cloud`.`configuration` SET component='TemplateManager' WHERE name='primary.storage.download.wait';
+UPDATE `cloud`.`configuration` SET component='StorageManager' WHERE name='storage.cleanup.enabled';
+UPDATE `cloud`.`configuration` SET component='StorageManager' WHERE name='storage.cleanup.interval';
+UPDATE `cloud`.`configuration` SET description='Comma separated list of cidrs internal to the datacenter that can host template download servers, please note 0.0.0.0 is not a valid site ' WHERE name='secstorage.allowed.internal.sites';
+