From: Felix Fietkau Date: Fri, 2 Mar 2007 13:21:33 +0000 (+0000) Subject: add support for if{down,up} -a and implement proper start/stop/restart for /etc/init... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=7c859ac5c82836023010c0cdbf03cb1fdc1b075e add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network SVN-Revision: 6455 --- 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 "; exit; } . /etc/functions.sh +[ $# = 0 ] && { echo " $0 "; exit; } +[ "x$1" = "x-a" ] && { + config_cb() { + [ -z "$2" ] || eval "$0 $2" + } + config_load network + exit +} include /lib/network scan_interfaces