暫無描述

1234567891011121314151617181920
  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. # Don't start on boot, mwan3 is started by hotplug event.
  15. return 0
  16. }