Skip to content

Commit

Permalink
Fixes #13527 - Install python3 modules for Fedora 30
Browse files Browse the repository at this point in the history
Signed-off-by: Stuart Auchterlonie <stuarta@mythtv.org>
  • Loading branch information
garybuhrmaster authored and stuarta committed Dec 3, 2019
1 parent 3f69635 commit ff233e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/mythtv-dnf/tasks/main.yml
Expand Up @@ -127,7 +127,7 @@
- python2-simplejson
when: ansible_distribution == "Fedora" and ansible_distribution_version|int < 31

- name: add mythtv essential python modules - Fedora 31+
- name: add mythtv essential python3 modules - Fedora 30+
set_fact:
dnf_pkg_lst:
- '{{ dnf_pkg_lst }}'
Expand All @@ -136,7 +136,7 @@
- python3-mysql
- python3-requests-cache
- python3-simplejson
when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= 31
when: ansible_distribution == "Fedora" and ansible_distribution_version|int >= 30

- name: add mythtv essential perl modules
set_fact:
Expand Down

0 comments on commit ff233e8

Please sign in to comment.