Files
Arch-R/packages/sysutils/irserver/init.d/61_irserver

36 lines
1.4 KiB
Plaintext
Raw Normal View History

2010-05-16 10:09:24 +02:00
################################################################################
# Copyright (C) 2009-2010 OpenELEC.tv
# http://www.openelec.tv
#
# OpenELEC is free software: you can redistribute it and/or modify
2010-05-16 10:09:24 +02:00
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2010-05-16 10:09:24 +02:00
#
# OpenELEC is distributed in the hope that it will be useful,
2010-05-16 10:09:24 +02:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2010-05-16 10:09:24 +02:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
2010-05-16 10:09:24 +02:00
################################################################################
2010-04-28 20:41:21 +02:00
# start the IRtrans daemon
#
# runlevels: openelec, textmode
[ -f /storage/.config/remote.conf ] && . /storage/.config/remote.conf
[ -f /storage/.config/lcd.conf ] && . /storage/.config/lcd.conf
if [ "$REMOTE_BACKEND" = "irtrans" -o "$LCD_DRIVER" = "irtrans" ]; then
2010-04-28 20:41:21 +02:00
progress "Starting IRtrans daemon"
2010-04-28 20:41:21 +02:00
[ "$DEBUG" = "yes" ] && \
IRSERVER_ARG="$IRSERVER_ARG -loglevel 4" # set loglevel in debugmode
2010-04-28 20:41:21 +02:00
irserver -logfile /var/log/irserver.log -pidfile /var/run/irserver.pid \
$IRSERVER_ARG -daemon /dev/irtrans0 > /dev/null 2>&1
2010-04-28 20:41:21 +02:00
fi