diff options
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 000000000..d7d87350e --- /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 +} |