fix a race condition where ppp interfaces were not added to the firewall properly...
[openwrt-10.03/.git] / package / ppp / files / etc / ppp / ip-up
index 30db93e10b868ca7cd09812469fc31c225ac9e84..fded600dff60fc2800f196ad518bfdfe3f966a1a 100755 (executable)
@@ -1,12 +1,16 @@
 #!/bin/sh
+. /etc/functions.sh
 PPP_IFACE="$1"
 PPP_TTY="$2"
 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"
 }