No Description

mwan3 154B

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