diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 13:21:33 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 13:21:33 +0000 |
commit | 84bec9f9cf7cd535c26db35a0aa434d4e395c0a0 (patch) | |
tree | 6e8bd50b807ebb42f90437dda262f5b1481ae190 /package/base-files/files/sbin | |
parent | 3e952891496fe1309fc93bc64c69906227d2e6de (diff) | |
download | upstream-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.tar.gz upstream-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.tar.bz2 upstream-84bec9f9cf7cd535c26db35a0aa434d4e395c0a0.zip |
add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network
SVN-Revision: 6455
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 103309fa84..540c69f169 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -1,8 +1,15 @@ #!/bin/sh # Copyright (C) 2006 OpenWrt.org -[ $# = 0 ] && { echo " $0 <group>"; exit; } . /etc/functions.sh +[ $# = 0 ] && { echo " $0 <group>"; exit; } +[ "x$1" = "x-a" ] && { + config_cb() { + [ -z "$2" ] || eval "$0 $2" + } + config_load network + exit +} include /lib/network scan_interfaces |