12 lines
112 B
Bash
12 lines
112 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
/usr/bin/wanmonitor -d &
|
|
}
|
|
|
|
stop() {
|
|
kill $(pidof wanmonitor)
|
|
}
|