[pve-devel] [PATCH storage] NFS: avoid using obsolete rpcinfo option

Fabian Ebner f.ebner at proxmox.com
Thu Feb 4 09:04:26 CET 2021


as suggested in the man page.

Signed-off-by: Fabian Ebner <f.ebner at proxmox.com>
---
 PVE/Storage/NFSPlugin.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/PVE/Storage/NFSPlugin.pm b/PVE/Storage/NFSPlugin.pm
index 72e06c2..cb16864 100644
--- a/PVE/Storage/NFSPlugin.pm
+++ b/PVE/Storage/NFSPlugin.pm
@@ -166,7 +166,7 @@ sub check_connection {
     if (defined($opts) && $opts =~ /vers=4.*/) {
 	# nfsv4 uses a pseudo-filesystem always beginning with /
 	# no exports are listed
-	$cmd = ['/usr/sbin/rpcinfo', '-t', $server, 'nfs', '4'];
+	$cmd = ['/usr/sbin/rpcinfo', '-T', 'tcp', $server, 'nfs', '4'];
     } else {
 	$cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
     }
-- 
2.20.1






More information about the pve-devel mailing list