#!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org
START=95

start() {
    /usr/sbin/anyremote -f /etc/anyremote.cfg > /dev/null &
}
    
stop() {
    killall anyremote
}