aboutsummaryrefslogtreecommitdiffstats
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
commit9fa29f2d2b3d5d7c25af94ce127177ccbcd0b370 (patch)
treeb79ff9b49185ede40303105156dfa22debcb1104 /package/ppp
parenta265e1d53505fdf5aaa68d35f203a225fe8e1b66 (diff)
downloadupstream-9fa29f2d2b3d5d7c25af94ce127177ccbcd0b370.tar.gz
upstream-9fa29f2d2b3d5d7c25af94ce127177ccbcd0b370.tar.bz2
upstream-9fa29f2d2b3d5d7c25af94ce127177ccbcd0b370.zip
[package] ppp: honour option auto in atm hotplug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23531 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 45ef54239c..4fd9b9c662 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