aboutsummaryrefslogtreecommitdiffstats
path: root/package/netifd/files/etc/init.d/network
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-21 01:47:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-10-21 01:47:49 +0000
commit9117bb10f7ef5536163dfa413a3aa799602907ae (patch)
tree23e29d8252f2ea52ba54d8cd62dbc73ee883af37 /package/netifd/files/etc/init.d/network
parenta1172f3c5dc1cd74605cc0dd3027533bb0ff8b58 (diff)
downloadupstream-9117bb10f7ef5536163dfa413a3aa799602907ae.tar.gz
upstream-9117bb10f7ef5536163dfa413a3aa799602907ae.tar.bz2
upstream-9117bb10f7ef5536163dfa413a3aa799602907ae.zip
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
Diffstat (limited to 'package/netifd/files/etc/init.d/network')
-rwxr-xr-xpackage/netifd/files/etc/init.d/network20
1 files changed, 20 insertions, 0 deletions
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
+}