mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-08 01:26:14 +02:00
488a50c307
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31860 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
238 B
Bash
Executable File
14 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
PPP_IPPARAM="$6"
|
|
|
|
. /lib/netifd/netifd-proto.sh
|
|
proto_init_update "$IFNAME" 0
|
|
proto_send_update "$PPP_IPPARAM"
|
|
|
|
[ -d /etc/ppp/ip-down.d ] && {
|
|
for SCRIPT in /etc/ppp/ip-down.d/*
|
|
do
|
|
[ -x "$SCRIPT" ] && "$SCRIPT" "$@"
|
|
done
|
|
}
|