14 lines
182 B
Plaintext
14 lines
182 B
Plaintext
|
#!/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
|
||
|
}
|
||
|
|
||
|
|