[mythtv-users] building mythtv from source on Debian 11 Bullseye/Linux Mint Debian Edition
Bill
keemllib at gmail.com
Tue Jul 12 17:05:39 UTC 2022
On 7/11/22 20:32, James Abernathy wrote:
>
> TASK [common : Information used to select which roles/tasks run] *********************************************
> ok: [localhost] => {
> "msg": [
> "Inventory Hostname: localhost",
> "Distribution: Debian",
> "Major Version: testing", <<<<<<<<<<<<<<<<<<<<<<<<<<<<
> "Major Release: testing", <<<<<<<<<<<<<<<<<<<<<<<<<<<<
> "Package Manager: apt"
> ]
> }
'Morning,
I think the above is the issue. Our Ansible playlist has tasks that look at the two
"Major" lines above. Expecting an integer in the reply. "testing" errors out when
the string is converted to an integer.
See if this returns a major_release that isn't "testing":
ansible --inventory=hosts.yml --module-name=setup --args="filter=ansible_lsb" localhost
If that also returns "testing" rather than a integer string, try the next.
Rather than me guessing, can you pastebin the output of this:
ansible --inventory=hosts.yml --module-name=setup localhost | egrep -v "address|ansible_ssh" > /tmp/my.setup.out
The egrep removes SSH public keys and IP addresses, but you can edit it before pasting
to see if there's anything you don't want to share. I don't see any passwords in mine.
The root user is there 'cause it's used for BECOME (sudo).
Thanks!
--
Bill
More information about the mythtv-users
mailing list