xbmc-dharma: quote variables, cosmetics

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-01 21:51:43 +02:00
parent 1a2587e9ec
commit 184b3410b9

View File

@ -38,10 +38,12 @@ progress "starting XBMC"
--start --log-target=syslog --daemonize 2>&1 > /dev/null
# starting xbmc-wiimote if avaible
[ -f /usr/bin/xbmc-wiiremote -a $(pidof bluetoothd) ] && /usr/bin/xbmc-wiiremote >/dev/null 2>&1 &
[ "$(pidof bluetoothd)" -a -f /usr/bin/xbmc-wiiremote ] && \
/usr/bin/xbmc-wiiremote >/dev/null 2>&1 &
# starting xbmc-ps3remote if avaible
[ -f /usr/bin/xbmc-ps3remote -a $(pidof bluetoothd) ] && /usr/bin/xbmc-ps3remote localhost 9777 >/dev/null 2>&1 &
[ "$(pidof bluetoothd)" -a -f /usr/bin/xbmc-ps3remote ] && \
/usr/bin/xbmc-ps3remote localhost 9777 >/dev/null 2>&1 &
# starting autoupdate
[ -f /usr/bin/autoupdate ] && /usr/bin/autoupdate &