From 5db0602c89ec79baed9f422e6df364fcfba6dfc0 Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 1 May 2008 19:12:28 +0000 Subject: [PATCH] add servicenode table git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1242 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/Schema.pm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/perl-xCAT-2.0/xCAT/Schema.pm b/perl-xCAT-2.0/xCAT/Schema.pm index 32f194f6a..868bdd820 100644 --- a/perl-xCAT-2.0/xCAT/Schema.pm +++ b/perl-xCAT-2.0/xCAT/Schema.pm @@ -442,6 +442,22 @@ vpd => { disable => "Set to 'yes' or '1' to comment out this row.", }, }, +servicenode => { + cols => [qw(node nameserver dhcpserver tftpserver nfsserver conserver monserver comments disable)], + keys => [qw(node)], + table_desc => 'List of all Service Nodes and services that will be setup on the Service Node.', + descriptions => { + node => 'The hostname of the service node as known by the Management Node.', + nameserver => 'Do we setup DNS on this service node? Valid values:yes or 1, no or 0.', + dhcpserver => 'Do we setup DHCP on this service node? Valid values:yes or 1 or:,,, no or 0.', + tftpserver => 'Do we setup TFTP on this service node? Valid values:yes or 1, no or 0.', + nfsserver => 'Do we setup file services (HTTP,FTP,or NFS) on this service node? Valid values:yes or 1, no or 0.', + conserver => 'Do we setup Conserver on this service node? Valid values:yes or 1, no or 0.', + monserver => 'Is this a monitoring even collection point? Valid values:yes or 1, no or 0.', + comments => 'Any user-written notes.', + disable => "Set to 'yes' or '1' to comment out this row.", + }, + }, ); # end of tabspec definition