keep track of the network interface states (stored in uci format in /var/state/networ...
[openwrt.git] / package / ppp / files / etc / ppp / ip-down
index 814948e..f3d63a0 100755 (executable)
@@ -1,5 +1,19 @@
 #!/bin/sh
-[ -z "$6" ] || env -i ACTION="ifdown" INTERFACE="$6" DEVICE="$1" PROTO=ppp /sbin/hotplug-call "iface"
+PPP_IFACE="$1"
+PPP_TTY="$2"
+PPP_SPEED="$3"
+PPP_LOCAL="$4"
+PPP_REMOTE="$5"
+PPP_IPPARAM="$6"
+export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
+[ -z "$PPP_IPPARAM" ] || {
+       env -i ACTION="ifdown" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface"
+
+       # remove the interface's network state
+       FILE=/var/state/network.$$
+       grep -v "^config_set '$PPP_IPPARAM' " /var/state/network > "$FILE"
+       mv "$FILE" /var/state/network
+}
 
 [ -d /etc/ppp/ip-down.d ] && {
        for SCRIPT in /etc/ppp/ip-down.d/*
This page took 0.023304 seconds and 4 git commands to generate.