From 94ce223ef944ae776b9eadd01f81dca80dfff4e9 Mon Sep 17 00:00:00 2001 From: ligc Date: Wed, 7 Sep 2011 06:03:24 +0000 Subject: [PATCH] add UseNFSv4onAIX in site table git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10457 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Schema.pm | 2 ++ xCAT-server/sbin/xcatconfig | 2 ++ 2 files changed, 4 insertions(+) diff --git a/perl-xCAT/xCAT/Schema.pm b/perl-xCAT/xCAT/Schema.pm index 2544b531d..c359d1ab9 100644 --- a/perl-xCAT/xCAT/Schema.pm +++ b/perl-xCAT/xCAT/Schema.pm @@ -871,6 +871,8 @@ site => { " service node. This will improve the performance in a flat network.\n\n". " useSSHonAIX: (yes/1 or no/0). If yes, ssh/scp will be setup and used. If no,\n". " rsh/rcp will be setup and used on AIX. Default is yes.\n\n". + " useNFSv4onAIX: (yes/1 or no/0). If yes, NFSv4 will be used with NIM. If no,\n". + " NFSv3 will be used with NIM. Default is no.\n\n". " vcenterautojoin: When set to no, the VMWare plugin will not attempt to auto remove\n". " and add hypervisors while trying to perform operations. If users\n". " or tasks outside of xCAT perform the joining this assures xCAT\n". diff --git a/xCAT-server/sbin/xcatconfig b/xCAT-server/sbin/xcatconfig index fcdd758e8..0cab3d117 100755 --- a/xCAT-server/sbin/xcatconfig +++ b/xCAT-server/sbin/xcatconfig @@ -998,6 +998,8 @@ sub initDB { $chtabcmds .= "$::XCATROOT/sbin/chtab key=useSSHonAIX site.value=yes;"; + $chtabcmds .= + "$::XCATROOT/sbin/chtab key=useNFSv4onAIX site.value=no;"; $chtabcmds .= "$::XCATROOT/sbin/chtab key=consoleondemand site.value=yes;"; }