diff options
author | Britney Fransen <brfransen@gmail.com> | 2013-11-16 18:47:29 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2013-11-16 18:47:29 (GMT) |
commit | e3e2804c1b462102cab62f7d9b7d7cc84c185c6b (patch) | |
tree | c75017d5ae33c7047d7d2c221261a8d64bfbd671 /abs/core/LinHES-system/mythfrontend-start | |
parent | a4265edac47afc88cfc2d7806fad048214e0267d (diff) | |
download | linhes_pkgbuild-e3e2804c1b462102cab62f7d9b7d7cc84c185c6b.zip linhes_pkgbuild-e3e2804c1b462102cab62f7d9b7d7cc84c185c6b.tar.gz linhes_pkgbuild-e3e2804c1b462102cab62f7d9b7d7cc84c185c6b.tar.bz2 |
LinHES-system: misc_status_info.sh: fix log parsing. closes #939. refs #933.
remove myth .24 detection
remove LinHES-run as it isn't used anymore and was replaced by LinHES-session
Diffstat (limited to 'abs/core/LinHES-system/mythfrontend-start')
-rwxr-xr-x | abs/core/LinHES-system/mythfrontend-start | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/abs/core/LinHES-system/mythfrontend-start b/abs/core/LinHES-system/mythfrontend-start index 5cfc9b7..320f960 100755 --- a/abs/core/LinHES-system/mythfrontend-start +++ b/abs/core/LinHES-system/mythfrontend-start @@ -3,12 +3,7 @@ PIDS=$(pidof mythfrontend) P_array=( $PIDS ) let "instances = ${#P_array[*]}" # Count elements. -if pacman -Q mythtv | grep -q 0.24 -then - STARTCMD="/usr/bin/mythfrontend -d -l /var/log/mythtv/mythfrontend.log" -else - STARTCMD="/usr/bin/mythfrontend -d --syslog local6" -fi +STARTCMD="/usr/bin/mythfrontend -d --syslog local6" if [ $instances -gt 0 ]; then |