From 68dd5e36bd751500d7b276f0ef3f8087f5c22f43 Mon Sep 17 00:00:00 2001 From: ligc Date: Mon, 24 Oct 2011 11:14:13 +0000 Subject: [PATCH] nfsv4 support, add -o vers=4 to mount commands if site.useNFSv4onAIX is set git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10868 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/updatenode.pm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/updatenode.pm b/xCAT-server/lib/xcat/plugins/updatenode.pm index 667a59431..e10b2bb0e 100644 --- a/xCAT-server/lib/xcat/plugins/updatenode.pm +++ b/xCAT-server/lib/xcat/plugins/updatenode.pm @@ -1980,7 +1980,16 @@ sub updateAIXsoftware # make sure pkg dir is exported if (scalar(@pkglist)) { - my $ecmd = qq~exportfs -i $pkgdir~; + my $ecmd; + my @nfsv4 = xCAT::Utils->get_site_attribute("useNFSv4onAIX"); + if ($nfsv4[0] && ($nfsv4[0] =~ /1|Yes|yes|YES|Y|y/)) + { + $ecmd = qq~exportfs -i -o vers=4 $pkgdir~; + } + else + { + $ecmd = qq~exportfs -i $pkgdir~; + } my $output = xCAT::Utils->runcmd("$ecmd", -1); if ($::RUNCMD_RC != 0) {