projects
/
openwrt
/
staging
/
yousong.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c965569
)
ppp: introduce "authfail" option which specifies whether pppd should attempt to re...
author
Jo-Philipp Wich
<jow@openwrt.org>
Wed, 29 Aug 2012 10:07:08 +0000
(10:07 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Wed, 29 Aug 2012 10:07:08 +0000
(10:07 +0000)
SVN-Revision: 33291
package/ppp/files/ppp.sh
patch
|
blob
|
history
diff --git
a/package/ppp/files/ppp.sh
b/package/ppp/files/ppp.sh
index 25345b2072397529bc7db0a7a955f41b0595187b..7e9b8dd8562a564ff4e8ec568a1c7ddac6764ca0 100755
(executable)
--- a/
package/ppp/files/ppp.sh
+++ b/
package/ppp/files/ppp.sh
@@
-19,6
+19,7
@@
ppp_generic_init_config() {
proto_config_add_boolean "defaultroute"
proto_config_add_boolean "peerdns"
proto_config_add_boolean "ipv6"
+ proto_config_add_boolean "authfail"
proto_config_add_int "mtu"
}
@@
-70,7
+71,10
@@
ppp_generic_teardown() {
case "$ERROR" in
11|19)
proto_notify_error "$interface" AUTH_FAILED
- proto_block_restart "$interface"
+ json_get_var authfail authfail
+ if [ "${authfail:-0}" -gt 0 ]; then
+ proto_block_restart "$interface"
+ fi
;;
2)
proto_notify_error "$interface" INVALID_OPTIONS