From 73fb28f6d018e52f1c2d66a3138615f1ddf9844a Mon Sep 17 00:00:00 2001 From: phamt Date: Mon, 24 Jun 2013 14:24:46 +0000 Subject: [PATCH] Added a hypervisor field in the storage table to handle z/VM native SCSI disks. In z/VM native SCSI disks must be configured for one or more hypervisors before they can be used. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16735 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Schema.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Schema.pm b/perl-xCAT/xCAT/Schema.pm index 15369449a..13d2f8380 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -264,7 +264,7 @@ virtsd => { }, storage => { - cols => [qw(node osvolume size state storagepool fcprange volumetag comments disable)], + cols => [qw(node osvolume size state storagepool hypervisor fcprange volumetag comments disable)], keys => [qw(node)], table_descr => 'Node storage resources', descriptions => { @@ -276,6 +276,7 @@ storage => { size => 'Size of the volume. Examples include: 10G, 1024M.', state => 'State of the volume. The valid values are: free, used, and allocated', storagepool => 'Name of storage pool where the volume is assigned.', + hypervisor => 'Name of the hypervisor where the volume is configured.', fcprange => 'A range of acceptable fibre channels that the volume can use. Examples include: 3B00-3C00;4B00-4C00.', volumetag => 'A specific tag used to identify the volume in the autoyast or kickstart template.', comments => 'Any user-written notes.',