diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-25 13:45:45 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-25 13:45:45 +0000 |
commit | 5f9c2e9fa6bb077f115b2c3e1d5db6b79dbfc625 (patch) | |
tree | c1b516342537403fd24e25da08a09702565388c9 /package/base-files/files/etc/hotplug.d/net/10-net | |
parent | 6f12a935c71837c40a98efe2b4e957c6ce7ec143 (diff) |
more reliable fix for handling ppp
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6356 3c298f89-4303-0410-b956-a3cf2f4a3e73
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-net | 5 |
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 9b72338ce8..77eb6da9d4 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")" |