projects
/
openwrt
/
staging
/
kaloz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa3c775
)
fix a race condition where ppp interfaces were not added to the firewall properly...
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 28 Nov 2008 16:41:46 +0000
(16:41 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 28 Nov 2008 16:41:46 +0000
(16:41 +0000)
SVN-Revision: 13402
package/ppp/files/etc/ppp/ip-up
patch
|
blob
|
history
diff --git
a/package/ppp/files/etc/ppp/ip-up
b/package/ppp/files/etc/ppp/ip-up
index 086efed958bb08aeb721cc284f5c9eef0c255a92..fded600dff60fc2800f196ad518bfdfe3f966a1a 100755
(executable)
--- a/
package/ppp/files/etc/ppp/ip-up
+++ b/
package/ppp/files/etc/ppp/ip-up
@@
-6,8
+6,11
@@
PPP_SPEED="$3"
PPP_LOCAL="$4"
PPP_REMOTE="$5"
PPP_IPPARAM="$6"
+PPP_UNIT="${PPP_IFACE##ppp}"
+
export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
[ -z "$PPP_IPPARAM" -o -z "$PPP_LOCAL" ] || {
+ uci_set_state network "$PPP_IPPARAM" unit "$PPP_UNIT"
uci_set_state network "$PPP_IPPARAM" ipaddr "$PPP_LOCAL"
uci_set_state network "$PPP_IPPARAM" gateway "$PPP_REMOTE"
}