From 71e2af998ca084aeef4ffa4f57c072e64333988b Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Mon, 18 Oct 2010 13:54:30 -0700 Subject: [PATCH] Treat simfs and vsfs the same --- mount/mount-lib.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mount/mount-lib.pl b/mount/mount-lib.pl index 134a30a1f..d93decd15 100755 --- a/mount/mount-lib.pl +++ b/mount/mount-lib.pl @@ -308,7 +308,8 @@ foreach $m (@mounted) { next; } my ($t, $f) = &mount::disk_space($m->[2], $m->[0]); - if (($m->[2] eq "simfs" || $m->[2] eq "vzfs") && + if (($m->[2] eq "simfs" || $m->[2] eq "vzfs" || + $m->[0] eq "/dev/vzfs") && $donevzfs{$t,$f}++) { # Don't double-count VPS filesystems next;