projects
/
openwrt
/
staging
/
chunkeey.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6029e1b
)
ppp: honour option auto in atm hotplug
author
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 19 Oct 2010 07:01:38 +0000
(07:01 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 19 Oct 2010 07:01:38 +0000
(07:01 +0000)
SVN-Revision: 23531
package/ppp/files/etc/hotplug.d/atm/20-atm-modem
patch
|
blob
|
history
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 45ef54239c9b0c9f60c5851eab63a9f4f9429856..4fd9b9c66224662586401e8d39f4ca6dbc085e48 100644
(file)
--- 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