summaryrefslogtreecommitdiff
path: root/net/mwan3/files/etc/init.d/mwan3
blob: 981154c7dc1b08c267e2d1949a5b210161d82850 (plain)
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
}