diff options
Diffstat (limited to 'linhes/linhes-system/lh_system_start.sh')
-rwxr-xr-x | linhes/linhes-system/lh_system_start.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/linhes/linhes-system/lh_system_start.sh b/linhes/linhes-system/lh_system_start.sh index 715af91..a4cee16 100755 --- a/linhes/linhes-system/lh_system_start.sh +++ b/linhes/linhes-system/lh_system_start.sh @@ -141,8 +141,10 @@ function first_configure(){ } function start_myth() { - STARTCMD="/usr/bin/mythfrontend --systemd-journal" - $STARTCMD 2>&1 & + STARTCMD="/usr/bin/mythfrontend --syslog local6" + if [ ! -f ~/.dontrunmythfrontend ]; then + $STARTCMD 2>&1 & + fi } #-------MAIN------- |