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/etc/init.d | |
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/etc/init.d')
-rwxr-xr-x | package/base-files/files/etc/init.d/network | 15 |
1 files changed, 14 insertions, 1 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 +} |