Updated Branches: refs/heads/master-6-17-stable d1ce66e34 -> e404d82ad
CLOUDSTACK-3354: The CentOS built-in is dynamically scalable Marking default CentOS template as dynamically_scalable template. The PV tools are installed in our CentOS 5.6 template already. Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e404d82a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e404d82a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e404d82a Branch: refs/heads/master-6-17-stable Commit: e404d82ad5903016bba28214332c641998bf4aac Parents: d1ce66e Author: Harikrishna Patnala <[email protected]> Authored: Thu Jul 4 13:55:05 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Thu Jul 4 20:23:26 2013 +0530 ---------------------------------------------------------------------- setup/db/db/schema-410to420.sql | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e404d82a/setup/db/db/schema-410to420.sql ---------------------------------------------------------------------- diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql index 11204c7..3085c75 100644 --- a/setup/db/db/schema-410to420.sql +++ b/setup/db/db/schema-410to420.sql @@ -1863,6 +1863,7 @@ INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'manag alter table `cloud`.`network_offerings` add column egress_default_policy boolean default false; ALTER TABLE `cloud`.`vm_template` ADD COLUMN `dynamically_scalable` tinyint(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if template contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory'; +UPDATE `cloud`.`vm_template` SET dynamically_scalable = 1 WHERE name = "CentOS 5.6(64-bit) no GUI (XenServer)" AND type = "BUILTIN"; DROP VIEW IF EXISTS `cloud`.`project_view`; CREATE VIEW `cloud`.`project_view` AS
