diff options
author | lcapriotti <lcapriotti@svn> | 2009-11-26 14:53:07 +0000 |
---|---|---|
committer | lcapriotti <lcapriotti@svn> | 2009-11-26 14:53:07 +0000 |
commit | f3bfef68bba537a2159a95343d3b0f0118599730 (patch) | |
tree | 055924c36b0dc891c0b219c75ce0089bf30d50b4 /tools/XBMCLive | |
parent | 9a472ffc23e6fb56823b05a0630ca946e67a92b6 (diff) |
fix for two missing -q
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25065 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/XBMCLive')
-rw-r--r-- | tools/XBMCLive/xbmc-live.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/XBMCLive/xbmc-live.conf b/tools/XBMCLive/xbmc-live.conf index 448a03645a..20df6531f6 100644 --- a/tools/XBMCLive/xbmc-live.conf +++ b/tools/XBMCLive/xbmc-live.conf @@ -72,7 +72,7 @@ pre-start script fi if [ ! "$(mount | grep iso9660)" ]; then - if ! grep -i noredir /tmp/xbmcliveParams ; then + if ! grep -q -i noredir /tmp/xbmcliveParams ; then if [ -n "$BOOTMEDIAMOUNTPOINT" ]; then if [ ! -d $BOOTMEDIAMOUNTPOINT/dotXBMC ]; then mkdir $BOOTMEDIAMOUNTPOINT/dotXBMC @@ -159,7 +159,7 @@ post-start script /usr/bin/diskmounter fi - if grep -i wakeOnUSBRemote /tmp/xbmcliveParams ; then + if grep -q -i wakeOnUSBRemote /tmp/xbmcliveParams ; then lircDriver=$(dmesg | grep usbcore | grep -i 'lirc' | sed -e "s/.* \(lirc*\)/\1/" | head -n 1) if [ ! -n "$lircDriver" ] ; then # No lirc driver loaded |