diff options
-rwxr-xr-x | scripts/vyatta-interfaces.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl index 2471c01..d26c0e4 100755 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -467,7 +467,7 @@ sub show_interfaces { if ($vif_name eq $intf->physicalDevice()); } else { push @match, $name - unless $intf->vif(); + unless $intf->vif() and $type ne 'all'; } } print join(' ', @match), "\n"; |