filesystem: add service of check_wlan.

This commit is contained in:
Pedro Gonçalves 2017-04-12 18:55:22 +01:00
parent bc788dc955
commit 560f4d8930

View File

@ -0,0 +1,11 @@
start()
{
sh /opt/check_wlan < /dev/null > /dev/null 2>&1 &
}
stop()
{
echo "* Stopping process..."
killall sh /opt/check_wlan -9 > /dev/null 2>&1
echo "* Process not running."
}