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/sbin/ifdown | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'package/base-files/files/sbin') 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 -- cgit v1.2.3