diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-21 01:47:49 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-21 01:47:49 +0000 |
commit | f85eb6d428598db0d0c0e4b9e94d8d0bcab0f512 (patch) | |
tree | 23e29d8252f2ea52ba54d8cd62dbc73ee883af37 /package/netifd/files/etc/init.d/network | |
parent | 799c0920c5e6dafbd5803c124523614fe6a637b0 (diff) |
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-x | package/netifd/files/etc/init.d/network | 20 |
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 +} |