diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-11-28 16:41:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-11-28 16:41:46 +0000 |
commit | fd77ccf84797ae2405dc1a02f1a84b65ba4e1584 (patch) | |
tree | b7c2a9480727d459adfc190ad7971d1525d2c41e /package | |
parent | 977da2f368642640a4a69b7244ead414d9e8b98c (diff) | |
download | upstream-fd77ccf84797ae2405dc1a02f1a84b65ba4e1584.tar.gz upstream-fd77ccf84797ae2405dc1a02f1a84b65ba4e1584.tar.bz2 upstream-fd77ccf84797ae2405dc1a02f1a84b65ba4e1584.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
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13402 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-x | package/ppp/files/etc/ppp/ip-up | 3 |
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" } |