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 | |
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')
-rwxr-xr-x | package/base-files/files/etc/init.d/network | 15 | ||||
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 9 |
2 files changed, 22 insertions, 2 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index 45d5311a7a..950b33726a 100755 --- a/package/base-files/files/etc/init.d/network +++ b/package/base-files/files/etc/init.d/network @@ -2,7 +2,7 @@ # Copyright (C) 2006 OpenWrt.org START=40 -start() { +boot() { setup_switch() { return 0; } include /lib/network @@ -12,3 +12,16 @@ start() { /sbin/wifi up } +start() { + ifup -a + /sbin/wifi up +} + +restart() { + ifup -a + /sbin/wifi up +} + +stop() { + ifdown -a +} 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 |