From 2219a926e263d06446e0bdd14e2d00bd67c1a6b1 Mon Sep 17 00:00:00 2001 From: Harald Hope Date: Tue, 17 Apr 2018 17:15:08 -0700 Subject: [PATCH] fixed missing sshfs filter in disk used --- inxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inxi b/inxi index 467546e..b99d8fd 100755 --- a/inxi +++ b/inxi @@ -7160,7 +7160,7 @@ sub disk_data { my %row = %$ref; # don't count remote used, also, some cases mount # panfs is parallel NAS volume manager, need more data - next if ($row{'fs'} && $row{'fs'} =~ /nfs|panfs|smbfs|unionfs/); + next if ($row{'fs'} && $row{'fs'} =~ /nfs|panfs|sshfs|smbfs|unionfs/); # in some cases, like redhat, mounted cdrom/dvds show up in partition data next if ($row{'dev-base'} && $row{'dev-base'} =~ /^sr[0-9]+$/); # this is used for specific cases where bind, or incorrect multiple mounts