1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 10:45:06 +03:00
openwrt-xburst/openwrt/package/base-files/default/sbin/ifdown

10 lines
232 B
Plaintext
Raw Normal View History

#!/bin/ash
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
type=$1
debug "### ifdown $type ###"
if=$(nvram get ${type}_ifname)
if_valid $if || exit
$DEBUG ifconfig $if down
kill $(cat /var/run/${if}.pid 2>&-) 2>&-