← Back to team overview

mythbuntu-bugs team mailing list archive

[Bug 512175] Re: mythtv-status failing with Mythtv v0.22

 

*** This bug is a duplicate of bug 500396 ***
    https://bugs.launchpad.net/bugs/500396

Howdy, and thank you for helping to make Mythbuntu better.  What version
of mythtv-status is installed on your system?  I suspect that this
problem is likely addressed by
https://bugs.launchpad.net/ubuntu/+source/mythexport/+bug/500396, so I'm
going to mark it as a duplicate of that.  If you don't believe this to
be the case, please feel free to comment here.

Per Bug 500396, resolving this before 10.04  involves enabling the
-testing repo and issuing a dist-upgrade command [which does NOT upgrade
you to 10.04 at this time].

Here is the latest version:

$ apt-cache policy mythtv-status
mythtv-status:
  Installed: 0.9.2-3~mythbuntu1
  Version table:
 *** 0.9.2-3~mythbuntu1 0
        500 http://ppa.launchpad.net karmic/main Packages
        100 /var/lib/dpkg/status

** Changed in: mythtv-status (Ubuntu)
   Importance: Undecided => Low

** Changed in: mythtv-status (Ubuntu)
       Status: New => Incomplete

** This bug has been marked a duplicate of bug 500396
   mythexport: Depends: libmyth-perl but it is not going to be installed E: Broken packages

-- 
mythtv-status failing with Mythtv v0.22
https://bugs.launchpad.net/bugs/512175
You received this bug notification because you are a member of Mythbuntu
Bug Team, which is subscribed to mythtv-status in ubuntu.

Status in “mythtv-status” package in Ubuntu: Incomplete

Bug description:
Binary package hint: mythtv-status

After upgrade to Mythbuntu 9.10 which includes Mythtv v0.22, mythtv-backend stopped updating the motd. Running /etc/init.d/mythtv-status refresh manually as root gave this message:

Unable to find any value for drive_total_total while looking at Total Disk Space
Unable to find any value for drive_total_used while looking at Total Disk Space
Something is wrong calculating the disk space percentage.

These same messages are mailed by cron every 10 minutes.

Running mythtv-status as root gave the expected output except for the total space area, where this text was inserted:

Total Disk Space: Total space is __drive_total_total__ MB, with __drive_total_used__ MB used (unknown)

The problem seems to be at line 246, this test is succeeding and the total space calculation is trying to run expecting the older XML file format.:

    'protocol_version' => [ ">= 32" ],

I have changed the line to this and it appears to be fixed:

    'protocol_version' => [ ">= 32 && < 39" ],