[mythtv-commits] Ticket #10732: Recordings fail after upgrade to .25

MythTV noreply at mythtv.org
Sat Aug 25 12:12:49 UTC 2012


#10732: Recordings fail after upgrade to .25
----------------------------------+----------------------------
 Reporter:  daveshome@…           |          Owner:  danielk
     Type:  Bug Report - General  |         Status:  assigned
 Priority:  minor                 |      Milestone:  unknown
Component:  MythTV - Recording    |        Version:  0.25-fixes
 Severity:  medium                |     Resolution:
 Keywords:                        |  Ticket locked:  0
----------------------------------+----------------------------

Comment (by vdzenh4673@…):

 This issue has annoyed me to no end. I've tried all the suggested
 workarounds to no avail.
 A system reboot seems to be the only thing that clears it up for a good
 stretch before it happens again.
 I use the script below to auto reboot when "poll error" is detected in
 mythbackend.log.
 I set it up to run on boot in the background from /etc/runit/1.local

 [http://www.linhes.org Distro: LinHES 7.4]
 {{{
 #!/bin/sh
 #
 # As root
 #
 LOG=${1:-/var/log/mythtv/mythbackend.log}
 tail -Fn0 $LOG |
 while read line ; do
         echo "$line" | egrep -i -q -e "(poll error|poll giving up)"
         rc=$?
         if [ $rc -eq 0 ] ; then
                 echo $line
                 /sbin/reboot
         fi
 done
 }}}

-- 
Ticket URL: <http://code.mythtv.org/trac/ticket/10732#comment:25>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center


More information about the mythtv-commits mailing list