2008-07-12 08:23:58 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-11 15:46:27 +00:00
|
|
|
# Copyright (C) 2008-2011 OpenWrt.org
|
|
|
|
|
2008-07-12 08:23:58 +00:00
|
|
|
START=95
|
|
|
|
|
2011-11-11 15:46:27 +00:00
|
|
|
SERVICE_DAEMONIZE=1
|
|
|
|
SERVICE_WRITE_PID=1
|
|
|
|
|
2008-07-12 08:23:58 +00:00
|
|
|
start() {
|
2011-11-11 15:46:27 +00:00
|
|
|
service_start /usr/sbin/anyremote -f /etc/anyremote.cfg
|
2008-07-12 08:23:58 +00:00
|
|
|
}
|
2011-11-11 15:46:27 +00:00
|
|
|
|
2008-07-12 08:23:58 +00:00
|
|
|
stop() {
|
2011-11-11 15:46:27 +00:00
|
|
|
service_stop /usr/sbin/anyremote
|
2008-07-12 08:23:58 +00:00
|
|
|
}
|