mirror of
https://github.com/novatiq/packages.git
synced 2026-07-29 23:03:06 +01:00
21 lines
213 B
Bash
Executable File
21 lines
213 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
START=99
|
|
|
|
start() {
|
|
/usr/sbin/mwan3 start
|
|
}
|
|
|
|
stop() {
|
|
/usr/sbin/mwan3 stop
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
boot() {
|
|
# Don't start on boot, mwan3 is started by hotplug event.
|
|
return 0
|
|
}
|