From 4cd1214db6cf4b262e8ce6381bc710091b375c96 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Fri, 3 Jan 2014 20:55:23 +0100 Subject: net-util: add support for Type=ethernet When DEVTYPE is not set for a nic, it means it is a wired/ethernet device. --- man/systemd-networkd.service.xml | 3 ++- man/udev.xml | 3 ++- src/shared/net-util.c | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/man/systemd-networkd.service.xml b/man/systemd-networkd.service.xml index 908354c587..f38e813e44 100644 --- a/man/systemd-networkd.service.xml +++ b/man/systemd-networkd.service.xml @@ -146,7 +146,8 @@ Type The device type, as exposed by the udev property - DEVTYPE. + DEVTYPE, or ethernet + to match devices without a DEVTYPE. diff --git a/man/udev.xml b/man/udev.xml index 32a520e7b8..0bcb91139f 100644 --- a/man/udev.xml +++ b/man/udev.xml @@ -793,7 +793,8 @@ Type - The device type, as exposed by the udev property DEVTYPE. + The device type, as exposed by the udev property DEVTYPE, or + ethernet to match a device without a DEVTYPE. diff --git a/src/shared/net-util.c b/src/shared/net-util.c index 8f8cfc9fdb..85278e5de6 100644 --- a/src/shared/net-util.c +++ b/src/shared/net-util.c @@ -49,7 +49,7 @@ bool net_match_config(const struct ether_addr *match_mac, if (match_driver && !streq_ptr(match_driver, dev_driver)) return 0; - if (match_type && !streq_ptr(match_type, dev_type)) + if (match_type && !streq_ptr(match_type, dev_type) && !(streq(match_type, "ethernet") && !dev_type)) return 0; if (match_name && !streq_ptr(match_name, dev_name)) -- cgit v1.2.3-54-g00ecf