mirror of https://github.com/apache/cloudstack.git
Merge pull request #963 from ustcweizhou/centos7-kvm
CLOUDSTACK-8979: add virtio support for CentOS/RHEL 7 on KVM@borisroman @NuxRo could you test it? * pr/963: CLOUDSTACK-8979: add virtio support for CentOS/RHEL 7 on KVM Signed-off-by: Remi Bergsma <github@remi.nl>
This commit is contained in:
commit
e15e1f6aca
|
|
@ -415,3 +415,6 @@ CREATE TABLE `cloud`.`ldap_trust_map` (
|
|||
UNIQUE KEY `uk_ldap_trust_map__domain_id` (`domain_id`),
|
||||
CONSTRAINT `fk_ldap_trust_map__domain_id` FOREIGN KEY (`domain_id`) REFERENCES `domain` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid,hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) VALUES (UUID(),'KVM', 'default', 'Red Hat Enterprise Linux 7', 245, utc_timestamp(), 0);
|
||||
INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid,hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) VALUES (UUID(),'KVM', 'default', 'CentOS 7', 246, utc_timestamp(), 0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue