summaryrefslogtreecommitdiffstats
path: root/lib/network/connection/ethernet.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/network/connection/ethernet.pm')
-rw-r--r--lib/network/connection/ethernet.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm
index c99f805..1381f1a 100644
--- a/lib/network/connection/ethernet.pm
+++ b/lib/network/connection/ethernet.pm
@@ -22,7 +22,10 @@ sub get_devices() {
sub get_unlisted_devices {
my ($interfaces, $listed_devices) = @_;
my @unlisted_interfaces = sort(difference2($interfaces, [ map { device_to_interface($_) } @$listed_devices ]));
- map { interface_to_device($_) || +{ description => $_, interface => $_ } } @unlisted_interfaces;
+ map { interface_to_device($_) || +{
+ description => $_ =~ /:\d+$/ ? N("Virtual interface") : $_,
+ interface => $_ },
+ } @unlisted_interfaces;
}
sub handles_ifcfg {