Updated Branches: refs/heads/4.1 fa47d3086 -> c54d9c963
CLOUDSTACK-1841: Missing `cloud`.`configuration` stmts in upgrade Following global configurations introduced b/w 3.0.2 and 4.1 were missed. concurrent.snapshots.threshold.perhost | NULL network.ipv6.search.retry.max | 10000 traffic.sentinel.exclude.zones | traffic.sentinel.include.zones | EXTERNAL Signed-off-by: Prasanna Santhanam <t...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c54d9c96 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c54d9c96 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c54d9c96 Branch: refs/heads/4.1 Commit: c54d9c96359334e0a0a81143095c97f213900acc Parents: fa47d30 Author: Prasanna Santhanam <t...@apache.org> Authored: Fri Mar 29 13:25:20 2013 +0530 Committer: Prasanna Santhanam <t...@apache.org> Committed: Fri Mar 29 18:11:22 2013 +0530 ---------------------------------------------------------------------- setup/db/db/schema-40to410.sql | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c54d9c96/setup/db/db/schema-40to410.sql ---------------------------------------------------------------------- diff --git a/setup/db/db/schema-40to410.sql b/setup/db/db/schema-40to410.sql index 0380c4f..5fe7127 100644 --- a/setup/db/db/schema-40to410.sql +++ b/setup/db/db/schema-40to410.sql @@ -1677,3 +1677,11 @@ CREATE TABLE `cloud`.`ucs_manager` ( SET foreign_key_checks = 1; UPDATE `cloud`.`configuration` SET value='KVM,XenServer,VMware,Ovm' WHERE name='hypervisor.list'; + +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'concurrent.snapshots.threshold.perhost' , NULL, 'Limit number of snapshots that can be handled concurrently; default is NULL - unlimited.'); + +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Network', 'DEFAULT', 'management-server', 'network.ipv6.search.retry.max' , 10000, 'The maximum number of retrying times to search for an available IPv6 address in the table'); + +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Usage', 'DEFAULT', 'management-server', 'traffic.sentinel.exclude.zones' , '', 'Traffic going into specified list of zones is not metered'); + +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Usage', 'DEFAULT', 'management-server', 'traffic.sentinel.include.zones' , 'EXTERNAL', 'Traffic going into specified list of zones is metered. For metering all traffic leave this parameter empty');