summaryrefslogtreecommitdiffstats
path: root/net/ifup.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ifup.c')
-rw-r--r--net/ifup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/ifup.c b/net/ifup.c
index de0c5f8a31..adab683e96 100644
--- a/net/ifup.c
+++ b/net/ifup.c
@@ -136,6 +136,11 @@ int ifup_all(unsigned flags)
while ((d = readdir(dir))) {
if (*d->d_name == '.')
continue;
+ /*
+ * Skip xxx-discover files since these are no
+ * network configuration files, but scripts to bring
+ * up network interface xxx.
+ */
if (strstr(d->d_name, "-discover"))
continue;
ifup(d->d_name, flags);