summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d/net/10-net
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/etc/hotplug.d/net/10-net')
-rw-r--r--package/base-files/files/etc/hotplug.d/net/10-net5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug.d/net/10-net b/package/base-files/files/etc/hotplug.d/net/10-net
index 9b72338ce..77eb6da9d 100644
--- a/package/base-files/files/etc/hotplug.d/net/10-net
+++ b/package/base-files/files/etc/hotplug.d/net/10-net
@@ -3,6 +3,11 @@
include /lib/network
addif() {
+ # PPP devices are configured by pppd, no need to run setup_interface here
+ case "$INTERFACE" in
+ ppp*) return 0;;
+ esac
+
scan_interfaces
local cfg="$(find_config "$INTERFACE")"