1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-04 22:11:07 +02:00
nbd eacd5dbffa set the DEVICE variable in hotplug events from ppp interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6667 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-03-24 14:12:22 +00:00

10 lines
227 B
Bash
Executable File

#!/bin/sh
[ -z "$6" ] || env -i ACTION="ifdown" INTERFACE="$6" DEVICE="$1" PROTO=ppp /sbin/hotplug-call "iface"
[ -d /etc/ppp/ip-down.d ] && {
for SCRIPT in /etc/ppp/ip-down.d/*
do
[ -x "$SCRIPT" ] && "$SCRIPT" $@
done
}