From 9a1c7d166fc6dc2646ca3a55581a0b75fa095c2a Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 6 May 2011 12:58:08 +0000 Subject: [PATCH] Add required columns to vm table for recent KVM enhancements git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.6@9501 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Schema.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Schema.pm b/perl-xCAT/xCAT/Schema.pm index 3ab837fe7..ab40f1c2e 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -185,7 +185,7 @@ vmmaster => { } }, vm => { - cols => [qw(node host migrationdest storage storagemodel cfgstore memory cpus nics nicmodel bootorder clockoffset virtflags master vncport textconsole powerstate beacon datacenter guestostype othersettings comments disable)], + cols => [qw(node host migrationdest storage storagemodel cfgstore memory cpus nics nicmodel bootorder clockoffset virtflags master vncport textconsole powerstate beacon datacenter guestostype othersettings vidmodel vidproto comments disable)], keys => [qw(node)], table_desc => 'Virtualization parameters', descriptions => { @@ -217,6 +217,8 @@ vm => { 'guestostype' => "This allows administrator to specify an identifier for OS to pass through to virtualization stack. Normally this should be ignored as xCAT will translate from nodetype.os rather than requiring this field be used\n", 'beacon' => "This flag is used by xCAT to track the state of the identify LED with respect to the VM.", 'datacenter' => "Optionally specify a datacenter for the VM to exist in (only applicable to VMWare)", + 'vidproto' => "Request a specific protocol for remote video access be set up. For example, spice in KVM.", + 'vidmodel' => "Model of video adapter to provide to guest. For example, qxl in KVM", } }, hypervisor => {