summaryrefslogtreecommitdiff
path: root/src/network/netdev/netdev.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2019-02-21 16:41:47 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2019-02-26 09:58:33 +0900
commita6779fecd953a2720c01ee8f9ca0bacffb4d7d29 (patch)
tree844b1e9b923b02e60921e395048f34cb0b1bea7c /src/network/netdev/netdev.c
parent510dc4da134cdee70a6206449ddb72506de57d81 (diff)
downloadsystemd-a6779fecd953a2720c01ee8f9ca0bacffb4d7d29.tar.gz
network: add debug log when conditions do not match system environment
Diffstat (limited to 'src/network/netdev/netdev.c')
-rw-r--r--src/network/netdev/netdev.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/network/netdev/netdev.c b/src/network/netdev/netdev.c
index 8d42e662f8..7d949fe5bb 100644
--- a/src/network/netdev/netdev.c
+++ b/src/network/netdev/netdev.c
@@ -669,12 +669,14 @@ int netdev_load_one(Manager *manager, const char *filename) {
return r;
/* skip out early if configuration does not match the environment */
- if (net_match_config(NULL, NULL, NULL, NULL, NULL,
- netdev_raw->match_host, netdev_raw->match_virt,
- netdev_raw->match_kernel_cmdline, netdev_raw->match_kernel_version,
- netdev_raw->match_arch,
- NULL, NULL, NULL, NULL, NULL) <= 0)
+ if (!net_match_config(NULL, NULL, NULL, NULL, NULL,
+ netdev_raw->match_host, netdev_raw->match_virt,
+ netdev_raw->match_kernel_cmdline, netdev_raw->match_kernel_version,
+ netdev_raw->match_arch,
+ NULL, NULL, NULL, NULL, NULL)) {
+ log_debug("%s: Conditions in the file do not match the system environment, skipping.", filename);
return 0;
+ }
if (netdev_raw->kind == _NETDEV_KIND_INVALID) {
log_warning("NetDev has no Kind configured in %s. Ignoring", filename);