summaryrefslogtreecommitdiff
path: root/package/ppp
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-19 07:01:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-19 07:01:38 +0000
commit191bf3732846cf1f7b1aac08af73360dffef7b75 (patch)
treefd93eff565d8f6ae8f4f42321742a0264fcbd62f /package/ppp
parent6029e1b618943f601ffa73af95ea37a2875c1006 (diff)
downloadmtk-20170518-191bf3732846cf1f7b1aac08af73360dffef7b75.zip
mtk-20170518-191bf3732846cf1f7b1aac08af73360dffef7b75.tar.gz
mtk-20170518-191bf3732846cf1f7b1aac08af73360dffef7b75.tar.bz2
ppp: honour option auto in atm hotplug
SVN-Revision: 23531
Diffstat (limited to 'package/ppp')
-rw-r--r--package/ppp/files/etc/hotplug.d/atm/20-atm-modem5
1 files changed, 4 insertions, 1 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
index 45ef542..4fd9b9c 100644
--- a/package/ppp/files/etc/hotplug.d/atm/20-atm-modem
+++ b/package/ppp/files/etc/hotplug.d/atm/20-atm-modem
@@ -10,10 +10,13 @@ if [ "$ACTION" = "add" ]; then
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 ]; then
+ if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then
found=1
( sleep 1; ifup "$ifc" ) &
fi