From eb30c401fd1d381e4a2f582d9a0148c812d4471c Mon Sep 17 00:00:00 2001 From: sakolish Date: Fri, 16 Nov 2007 19:52:59 +0000 Subject: [PATCH] Added "ppchcp" "ppc", and "ppcDirect" to Schema git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@54 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/Schema.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/perl-xCAT-2.0/xCAT/Schema.pm b/perl-xCAT-2.0/xCAT/Schema.pm index df5425ea6..0028a69f2 100644 --- a/perl-xCAT-2.0/xCAT/Schema.pm +++ b/perl-xCAT-2.0/xCAT/Schema.pm @@ -5,6 +5,18 @@ package xCAT::Schema; #certain SQL backends don't ascribe meaning to the data types anyway. #New format, not sql statements, but info enough to describe xcat tables %tabspec = ( + ppchcp => { + cols => [qw(hcp username password comments disable)], + keys => [qw(hcp)], + }, + ppc => { + cols => [qw(node hcp id profile mgt comments disable)], + keys => [qw(node)], + }, + ppcDirect => { + cols => [qw(hcp username password comments disable)], + keys => [qw(hcp)], + }, nodetype => { cols => [qw(node os arch profile comments disable)], keys => [qw(node)],