You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by an...@apache.org on 2020/07/01 13:25:48 UTC

[cloudstack] 01/01: fix-debian10-32bit-HV-mappings-for-VMware

This is an automated email from the ASF dual-hosted git repository.

andrijapanic pushed a commit to branch fix-debian10-32bit-HV-mappings-for-VMware
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit 6e196b4a7611bc687a28cea0785becd5e781bb08
Author: Andrija Panic <45...@users.noreply.github.com>
AuthorDate: Wed Jul 1 15:25:28 2020 +0200

    fix-debian10-32bit-HV-mappings-for-VMware
---
 engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql b/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
index 5ec50cd..7ead97c 100644
--- a/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
+++ b/engine/schema/src/main/resources/META-INF/db/schema-41400to41500.sql
@@ -18,3 +18,7 @@
 --;
 -- Schema upgrade from 4.14.0.0 to 4.15.0.0
 --;
+
+
+-- Fix Debian 10 32-bit hypervisor mappings on VMware, debian10-32bit OS ID in guest_os table is 292, not 282
+UPDATE `guest_os_hypervisor` SET guest_os_id=292 WHERE guest_os_id=282 AND hypervisor_type="VMware" AND guest_os_name="debian10Guest";