diff options
Diffstat (limited to 'inspector')
-rwxr-xr-x | inspector/virt-inspector.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inspector/virt-inspector.pl b/inspector/virt-inspector.pl index dae17a8d..cd5427a5 100755 --- a/inspector/virt-inspector.pl +++ b/inspector/virt-inspector.pl @@ -307,7 +307,7 @@ if ($output eq "fish" || $output eq "ro-fish") { # Have to mount / first. Luckily '/' is early in the ASCII # character set, so this should be OK. foreach (sort keys %$mounts) { - print "-m $mounts->{$_}:$_ " if $_ ne "swap"; + print "-m $mounts->{$_}:$_ " if $_ ne "swap" && $_ ne "none"; } print "\n" } |