diff options
author | James Meyer <james.meyer@operamail.com> | 2012-09-27 05:07:55 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-09-27 05:07:55 (GMT) |
commit | aeb0197b0731ae769b1aae8394eb6fc650757cdf (patch) | |
tree | 6d84eec8c5c7c449d38b7fa4e884505dcf6b35f9 /abs/core/LinHES-system/LinHES-session | |
parent | 8d7a3e620c1d1c363faf75e5d4055a2f9f0d3131 (diff) | |
download | linhes_pkgbuild-aeb0197b0731ae769b1aae8394eb6fc650757cdf.zip linhes_pkgbuild-aeb0197b0731ae769b1aae8394eb6fc650757cdf.tar.gz linhes_pkgbuild-aeb0197b0731ae769b1aae8394eb6fc650757cdf.tar.bz2 |
LinHES-system: adjust for the new msg_client syntax
remove lh_message and msg_osd.py
Diffstat (limited to 'abs/core/LinHES-system/LinHES-session')
-rwxr-xr-x | abs/core/LinHES-system/LinHES-session | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/abs/core/LinHES-system/LinHES-session b/abs/core/LinHES-system/LinHES-session index 902962f..d7c0151 100755 --- a/abs/core/LinHES-system/LinHES-session +++ b/abs/core/LinHES-system/LinHES-session @@ -13,6 +13,9 @@ xset -dpms s off export MALLOC_CHECK_=0 +MYTH_ARGS="-d --syslog local6" +[ -f /etc/conf.d/mythfrontend ] && . /etc/conf.d/mythfrontend + # # Run any scripting that applies to special hardware. These brand-specific commands that run @@ -76,7 +79,7 @@ export MALLOC_CHECK_=0 function msg(){ #/usr/LH/bin/lh_message.sh "$1" - /usr/LH/bin/msg_client.py "$1" + /usr/LH/bin/msg_client.py --msg "$1" } @@ -285,7 +288,7 @@ function start_myth() { then STARTCMD="/usr/bin/mythfrontend -d -l /var/log/mythtv/mythfrontend.log" else - STARTCMD="/usr/bin/mythfrontend -d --syslog local6" + STARTCMD="/usr/bin/mythfrontend $MYTH_ARGS" fi fi |