Repository: cloudstack
Updated Branches:
  refs/heads/master de09b5afa -> 0af26000b


CLOUDSTACK-9525 add support for windows 10 guest os in xenserver 6.5.0


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

Branch: refs/heads/master
Commit: eba58db744d31ff277f2d69fc78770581c39f22d
Parents: de09b5a
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Authored: Mon Oct 3 15:59:00 2016 +0530
Committer: Rajani Karuturi <rajani.karut...@accelerite.com>
Committed: Mon Oct 10 11:25:14 2016 +0530

----------------------------------------------------------------------
 setup/db/db/schema-4910to41000.sql | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/eba58db7/setup/db/db/schema-4910to41000.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-4910to41000.sql 
b/setup/db/db/schema-4910to41000.sql
index 8ea67e1..a48b46b 100644
--- a/setup/db/db/schema-4910to41000.sql
+++ b/setup/db/db/schema-4910to41000.sql
@@ -19,4 +19,12 @@
 -- Schema upgrade from 4.9.1.0 to 4.10.0.0;
 --;
 
-ALTER TABLE `cloud`.`domain_router` ADD COLUMN  update_state varchar(64) 
DEFAULT NULL;
\ No newline at end of file
+ALTER TABLE `cloud`.`domain_router` ADD COLUMN  update_state varchar(64) 
DEFAULT NULL;
+
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, 
created) VALUES (257, UUID(), 6, 'Windows 10 (32-bit)', now());
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, 
created) VALUES (258, UUID(), 6, 'Windows 10 (64-bit)', now());
+INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, 
created) VALUES (259, UUID(), 6, 'Windows Server 2012 (64-bit)', now());
+
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, 
hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES 
('Xenserver', '6.5.0', 'Windows 10 (32-bit)', 257, UUID(), now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, 
hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES 
('Xenserver', '6.5.0', 'Windows 10 (64-bit)', 258, UUID(), now());
+INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (hypervisor_type, 
hypervisor_version, guest_os_name, guest_os_id, uuid, created) VALUES 
('Xenserver', '6.5.0', 'Windows Server 2012 (64-bit)', 259, UUID(), now());
\ No newline at end of file

Reply via email to