From 6cefc17de995bc72476e6c3a58ca04edda218a7d Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 29 Feb 2008 21:44:50 +0000 Subject: [PATCH] Add description and a field for administrator use in switch table git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@643 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/Schema.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/perl-xCAT-2.0/xCAT/Schema.pm b/perl-xCAT-2.0/xCAT/Schema.pm index f6469e317..efcacd2c1 100644 --- a/perl-xCAT-2.0/xCAT/Schema.pm +++ b/perl-xCAT-2.0/xCAT/Schema.pm @@ -391,14 +391,15 @@ site => { # keys => [qw(sitename)] # }, switch => { - cols => [qw(node switch port vlan comments disable)], + cols => [qw(node switch port vlan interface comments disable)], keys => [qw(node switch port)], table_desc => 'Contains what switch port numbers each node is connected to.', descriptions => { node => 'The node name or group name.', switch => 'The switch hostname.', port => 'The port number in the switch that this node is connected to.', - vlan => 'Not used??', + vlan => 'xCAT currently does not make use of this field, however it may do so in the future. For now, it can be used by administrators for their own purposes, but keep in mind some xCAT feature later may try to enforce this if set', + interface => 'The interface name from the node perspective. This is not currently used by xCAT, but administrators may wish to use this for their own purposes', comments => 'Any user-written notes.', disable => "Set to 'yes' or '1' to comment out this row.", },