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/8c5b90ba Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/8c5b90ba Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/8c5b90ba Branch: refs/heads/4.0 Commit: 8c5b90ba098cd3e4b549be70405b8f3b22c9b436 Parents: b32ac9a Author: Alena Prokharchyk <[email protected]> Authored: Thu Aug 16 14:57:14 2012 -0700 Committer: Alex Huang <[email protected]> Committed: Thu Aug 16 16:44:46 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/8c5b90ba/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'; +
