From 8c7ae96988d5c0898aebac39ad5a653efceb7399 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Mon, 2 Mar 2009 18:40:07 +0000 Subject: [PATCH] -Add table column for 'bmcport' for systems that support selectable BMC network ports git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2824 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 a8595d9eb..54af73404 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -152,12 +152,13 @@ hosts => { }, }, ipmi => { - cols => [qw(node bmc username password comments disable )], + cols => [qw(node bmc bmcport username password comments disable )], keys => [qw(node)], table_desc => 'Settings for nodes that are controlled by an on-board BMC via IPMI.', descriptions => { node => 'The node name or group name.', bmc => 'The hostname of the BMC adapater.', + bmcport => 'In systems with selectable shared/dedicated ethernet ports, this parameter can be used to specify the preferred port. 0 means use the shared port, 1 means dedicated, blank is to not assign', username => 'The BMC userid. If not specified, the key=ipmi row in the passwd table is used as the default.', password => 'The BMC password. If not specified, the key=ipmi row in the passwd table is used as the default.', comments => 'Any user-written notes.',