diff options
author | James Meyer <james.meyer@operamail.com> | 2013-12-09 20:26:43 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2013-12-09 20:26:43 (GMT) |
commit | efb028d99b56e06e48dfc3d762e9d699ee1f24b7 (patch) | |
tree | 032729c00317878a0c15db4e9ba35044c597a158 /abs/core/LinHES-system/LinHES-session | |
parent | b7e124567f44d259655c79181f1af9bcd6586341 (diff) | |
download | linhes_pkgbuild-efb028d99b56e06e48dfc3d762e9d699ee1f24b7.zip linhes_pkgbuild-efb028d99b56e06e48dfc3d762e9d699ee1f24b7.tar.gz linhes_pkgbuild-efb028d99b56e06e48dfc3d762e9d699ee1f24b7.tar.bz2 |
LinHES-system: add msg that connection to mythbackend was made. Adjust the timing of the be check just a bit
Diffstat (limited to 'abs/core/LinHES-system/LinHES-session')
-rwxr-xr-x | abs/core/LinHES-system/LinHES-session | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/abs/core/LinHES-system/LinHES-session b/abs/core/LinHES-system/LinHES-session index d7b70ea..c6d0b09 100755 --- a/abs/core/LinHES-system/LinHES-session +++ b/abs/core/LinHES-system/LinHES-session @@ -299,10 +299,16 @@ function start_myth() { while [ $rc -ne 0 ] do msg "Waiting for connection to MythBackend" + sleep 6 /usr/LH/bin/be_check.py rc=$? - sleep 6 + if [ $rc -eq 0 ] + then + msg "Successful Connection to MythBackend" + fi done + sleep 3 #give time for MBE to be fully operational + fi #continue on with starting mythtv |