summaryrefslogtreecommitdiffstats
path: root/package/ppp
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-11-28 16:41:46 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-11-28 16:41:46 +0000
commitb2ec8ffd5c8e4bc79ac1e3e9f314a96bb8ce17c1 (patch)
treeed076820b083be4c03ecd77f9442d3a165034d8e /package/ppp
parentaa3c775b65132f2e3fc4a4eb371cfd37237cf704 (diff)
downloadmaster-31e0f0ae-b2ec8ffd5c8e4bc79ac1e3e9f314a96bb8ce17c1.tar.gz
master-31e0f0ae-b2ec8ffd5c8e4bc79ac1e3e9f314a96bb8ce17c1.tar.bz2
master-31e0f0ae-b2ec8ffd5c8e4bc79ac1e3e9f314a96bb8ce17c1.zip
fix a race condition where ppp interfaces were not added to the firewall properly when brought up at boot time - save the ppp interface unit number in the network state
SVN-Revision: 13402
Diffstat (limited to 'package/ppp')
-rwxr-xr-xpackage/ppp/files/etc/ppp/ip-up3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/ppp/files/etc/ppp/ip-up b/package/ppp/files/etc/ppp/ip-up
index 086efed958..fded600dff 100755
--- 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"
}