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