1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-17 21:00:15 +03:00
openwrt-xburst/package/base-files/default/sbin/ifdown
nbd 84e5ae23ce don't load config files in failsafe mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1750 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-08-25 11:57:56 +00:00

12 lines
334 B
Bash
Executable File

#!/bin/ash
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/network.overrides
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
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>&-