wanmonitor/files/etc/init.d/wanmonitor
2018-04-23 17:45:56 +02:00

12 lines
113 B
Bash

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