From 9e72871b81d1ed3a7750551600953787549036f2 Mon Sep 17 00:00:00 2001 From: nott Date: Fri, 13 Jul 2012 19:58:59 +0000 Subject: [PATCH] add mntopts to litetree table git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@13296 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 76608a9a6..ff5d5cca2 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -124,7 +124,7 @@ kvm_masterdata => { litetree => { - cols => [qw(priority image directory comments disable)], + cols => [qw(priority image directory mntopts comments disable)], keys => [qw(priority)], required => [qw(priority directory)], table_desc => 'Directory hierarchy to traverse to get the initial contents of node files. The files that are specified in the litefile table are searched for in the directories specified in this table.', @@ -132,6 +132,7 @@ litetree => { priority => 'This number controls what order the directories are searched. Directories are searched from smallest priority number to largest.', image => "The name of the image that will use this directory, as specified in the osimage table. If image is not supplied, the default is 'ALL'. 'ALL' means use it for all images.", directory => 'The location (hostname:path) of a directory that contains files specified in the litefile table. Variables are allowed. E.g: $noderes.nfsserver://xcatmasternode/install/$node/#CMD=uname-r#/', + mntopts => "A comma-separated list of options to use when mounting the persistent directory. (Ex. 'soft') The default is to do a 'hard' mount.", comments => 'Any user-written notes.', disable => "Set to 'yes' or '1' to comment out this row.", },