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
This commit is contained in:
ligc 2011-09-07 06:03:24 +00:00
parent 70d9db19d9
commit 94ce223ef9
2 changed files with 4 additions and 0 deletions

View File

@ -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".

View File

@ -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;";
}