From 84bec9f9cf7cd535c26db35a0aa434d4e395c0a0 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 2 Mar 2007 13:21:33 +0000 Subject: add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network SVN-Revision: 6455 --- package/base-files/files/etc/init.d/network | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'package/base-files/files/etc') 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 +} -- cgit v1.2.3