summaryrefslogtreecommitdiffstats
path: root/abs/core/runit-scripts/runitscripts/services/remotes/run
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2012-04-24 01:42:07 (GMT)
committerBritney Fransen <brfransen@gmail.com>2012-04-24 01:42:07 (GMT)
commit51665a2b73e708c35d1f4e523f0ecf22eb544597 (patch)
tree4a5f6dd4b192c839e98be3f5d222ce3c6b2368f4 /abs/core/runit-scripts/runitscripts/services/remotes/run
parent8c0d396181e43158de3f54c479456ca7ed052248 (diff)
downloadlinhes_pkgbuild-51665a2b73e708c35d1f4e523f0ecf22eb544597.zip
linhes_pkgbuild-51665a2b73e708c35d1f4e523f0ecf22eb544597.tar.gz
linhes_pkgbuild-51665a2b73e708c35d1f4e523f0ecf22eb544597.tar.bz2
runit-scripts: remotes:run: fix cmds so runit controls correct command. refs#821
Diffstat (limited to 'abs/core/runit-scripts/runitscripts/services/remotes/run')
-rwxr-xr-xabs/core/runit-scripts/runitscripts/services/remotes/run15
1 files changed, 8 insertions, 7 deletions
diff --git a/abs/core/runit-scripts/runitscripts/services/remotes/run b/abs/core/runit-scripts/runitscripts/services/remotes/run
index 35d3f80..9d46b0e 100755
--- a/abs/core/runit-scripts/runitscripts/services/remotes/run
+++ b/abs/core/runit-scripts/runitscripts/services/remotes/run
@@ -68,21 +68,21 @@ then
CMD="/usr/sbin/lircd -r -n --driver=commandir"
printhl " Using commandir"
echo $CMD >>$LOG
- exec $CMD >>$LOG 2>>$LOG
+ $CMD >>$LOG 2>>$LOG
elif [ x$HostBlasterType = xiguanaIR-usb -o x$ReceiverType = xiguanaIR-usb ]
then
sv start igdaemon
CMD="/usr/sbin/lircd -r -n --driver=iguanaIR"
printhl " Using iguanaIR usb"
echo $CMD >>$LOG
- exec $CMD >>$LOG 2>>$LOG
+ $CMD >>$LOG 2>>$LOG
elif [ x$ReceiverType = "xSiliconDust_HDHR" ]
then
# if using the SiliconDust_HDHR as an I/R Receiver
CMD="/usr/sbin/lircd -H udp -d 5000 -n"
printhl " Using SiliconDust on port 5000"
echo $CMD >>$LOG
- exec $CMD >>$LOG 2>>$LOG
+ $CMD >>$LOG 2>>$LOG
else
LASTCMD=""
@@ -91,7 +91,7 @@ else
CMD="/usr/sbin/lircd -r -d /dev/lirc$i --output=/var/run/lirc/lircd$i --pidfile=/var/run/lircd$i.pid --listen=876$i"
printhl " Device $i"
echo $CMD >>$LOG
- exec $CMD >>$LOG 2>>$LOG
+ $CMD >>$LOG 2>>$LOG
LASTCMD="--connect=localhost:876$i $LASTCMD "
done
@@ -102,13 +102,14 @@ else
#program must not terminate.
stat_runit "Starting remotes from /etc/remote.run"
- echo "Starting remotes from /etc/remote.run" >>$LOG
- exec /etc/remote.run $LASTCMD >>$LOG 2>>$LOG
+ LCMD="/etc/remote.run $LASTCMD"
+ echo "Starting remotes from $LCMD" >>$LOG
+ exec $LCMD >>$LOG 2>>$LOG
else
echo "Disable in kernel remote driver" >>$LOG
in_kernel_support "disable"
LCMD="/usr/sbin/lircd -r -n -d /dev/lirc0 --output /var/run/lirc/lircd $LASTCMD"
- echo $LCMD >>$LOG
+ echo "Starting remotes from $LCMD" >>$LOG
exec $LCMD >>$LOG 2>>$LOG
fi
fi