16 lines
295 B
Plaintext
16 lines
295 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2012 OpenWrt.org
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
START=80
|
||
|
|
||
|
start() {
|
||
|
service_start /usr/bin/tvheadend -f -c /etc/tvheadend
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/bin/tvheadend
|
||
|
}
|