1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/bin/sh /etc/rc.common START=99 start() { /usr/sbin/mwan3 start } stop() { /usr/sbin/mwan3 stop } restart() { stop start } boot() { return 0 }