diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-20 13:09:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-20 13:09:27 +0000 |
commit | a660a57d71084376688ed034cfe7ea268d67b62c (patch) | |
tree | 51e5a23545121c044ab8b75fa2dba2f5483b2bcc /package/ppp/files/etc/hotplug.d | |
parent | f6ad186eec0faaf55b7a00558d33f08bca28313b (diff) | |
download | upstream-a660a57d71084376688ed034cfe7ea268d67b62c.tar.gz upstream-a660a57d71084376688ed034cfe7ea268d67b62c.tar.bz2 upstream-a660a57d71084376688ed034cfe7ea268d67b62c.zip |
pppd: split files into netifd and non-netifd files, move the netifd ppp.sh file to the pppd package
SVN-Revision: 31041
Diffstat (limited to 'package/ppp/files/etc/hotplug.d')
-rw-r--r-- | package/ppp/files/etc/hotplug.d/atm/20-atm-modem | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/package/ppp/files/etc/hotplug.d/atm/20-atm-modem b/package/ppp/files/etc/hotplug.d/atm/20-atm-modem deleted file mode 100644 index 4fd9b9c662..0000000000 --- a/package/ppp/files/etc/hotplug.d/atm/20-atm-modem +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -if [ "$ACTION" = "add" ]; then - include /lib/network - scan_interfaces - - local found=0 - local ifc - for ifc in $interfaces; do - local up - config_get_bool up "$ifc" up 0 - - local auto - config_get_bool auto "$ifc" auto 1 - - local proto - config_get proto "$ifc" proto - - if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then - found=1 - ( sleep 1; ifup "$ifc" ) & - fi - done - - if [ "$found" != 1 ]; then - logger "Found no matching interface for DSL device $DEVICENAME" - fi -fi |