From 9117bb10f7ef5536163dfa413a3aa799602907ae Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 21 Oct 2011 01:47:49 +0000 Subject: add an initial (experimental) version of netifd, disabled by default git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28499 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/netifd/files/etc/init.d/network | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 package/netifd/files/etc/init.d/network (limited to 'package/netifd/files/etc/init.d/network') diff --git a/package/netifd/files/etc/init.d/network b/package/netifd/files/etc/init.d/network new file mode 100755 index 0000000000..d7d87350ef --- /dev/null +++ b/package/netifd/files/etc/init.d/network @@ -0,0 +1,20 @@ +#!/bin/sh /etc/rc.common +START=40 +STOP=90 + +start() { + setup_switch() { return 0; } + + include /lib/network + setup_switch + + ubus call network reload +} + +restart() { + start +} + +stop() { + /sbin/ifdown -a +} -- cgit v1.2.3