From 86e4c6d760cfe0cff836e9bd5ecced4dfd35bd99 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 31 Oct 2008 13:34:03 +0000 Subject: [PATCH] -Schema additions for 2.1.x features git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2434 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Schema.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Schema.pm b/perl-xCAT/xCAT/Schema.pm index 6431f1a05..cafcf63a7 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -52,7 +52,7 @@ vm => { } }, bootparams => { - cols => [qw(node kernel initrd kcmdline addkcmdline comments disable)], + cols => [qw(node kernel initrd kcmdline addkcmdline dhcpstatements adddhcpstatements comments disable)], keys => [qw(node)], table_desc => 'Current boot settings to be sent to systems attempting network boot for deployment, stateless, or other reasons. Mostly automatically manipulated by xCAT.', descriptions => { @@ -61,6 +61,8 @@ bootparams => { 'initrd' => 'The initial ramdisk image that network boot actions should use (could be a DOS floppy or hard drive image if using memdisk as kernel)', 'kcmdline' => 'Arguments to be passed to the kernel', 'addkcmdline' => 'User specified one or more parameters to be passed to the kernel', + 'dhcpstatements' => 'xCAT manipulated custom dhcp statements (not intended for user manipulation)', + 'adddhcpstatements' => 'Custom dhcp statements for administrator use (not implemneted yet)', comments => 'Any user-written notes.', disable => "Set to 'yes' or '1' to comment out this row.", }