#!/usr/bin/env -S retext --preview
** Only runs on Ansible versions above 2.3. **
N.B. 6/7/2023, the directory for Ansible collections has been corrected. See requirements.yml and re-run if non Ansible core modules fail (most won't need to do this.)
This repository contains an Ansible playbook for user's that build MythTV from source. It's also used for setting up MythTV buildslaves.
First you need to clone the playbook:
git clone https://github.com/MythTV/ansible
cd <the directory just created>
Debian users running Wheezy will need to enable wheezy-backports. Jessie or later is recommended for 0.28 and above.
Install an ssh
client and server for your distribution. You must be
able to ssh
into localhost
from localhost
.
Choose the appropriate command(s) for your distribution.
Distribution | Command |
---|---|
Archlinux | pacman -S ansible |
Centos | yum install ansible (enable the EPEL repository first) |
Debian (and derivatives) | apt install ansible |
Fedora | dnf install ansible |
MacOSX (macoports) | port install py311-ansible |
MacOSX (homebrew) | brew install ansible |
FreeBSD | pkg install py27-ansible |
OpenSuse | zypper install ansible |
Most users will use Ansible Community
from their distribution.
Ansible Core
will require collections
. They are defined in
the included requirements.yml
file. See it for how to load them.
For most distributions, run the playbook as follows. Replace
localhost
with the --limit value
in the table below if
required.
See mythtv.yml
for an additional command line if this
doesn't work for your distribution:
./mythtv.yml --limit=localhost
Distribution | --limit value |
---|---|
Fedora 30 | f30 |
MacOSX (using MacPorts) | macports |
MacOSX (using MacPorts) | homebrew |
FreeBSD | freebsd |
Builders | builder |
CPP Check and Doxygen | tools |
For Qt6 support, add -e "qt6=true"
to the end of the command line. E.G.
./mythtv.yml --limit=localhost -e "qt6=true"
brew install ansible
./mythtv.yml --limit=localhost
sudo port install py311-ansible
./mythtv.yml --limit=localhost
-
Optionally specify a database version:
./mythtv.yml --extra-vars="database_version=mariadb-10.5" --limit=localhost
-
Optionally do not install qtwebkit:
``` ./mythtv.yml --extra-vars="install_qtwebkit=false" --limit=localhost ```
We welcome contributions to support additional platforms. Please contact the
developers if you are interested in this. Output from a run of ./mythtv.yml
is needed for starters.