wanmonitor/files/etc/init.d/wanmonitor
2018-04-23 11:15:11 +02:00

12 lines
112 B
Bash

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