17 lines
396 B
YAML
17 lines
396 B
YAML
---
|
|
- assert:
|
|
that: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
|
|
|
|
- name: install non-free gstreamer plugins
|
|
become: true
|
|
dnf:
|
|
state: latest
|
|
allowerasing: true
|
|
name:
|
|
- ffmpeg
|
|
- gstreamer1-plugins-bad-free
|
|
- gstreamer1-plugins-bad-freeworld
|
|
- gstreamer1-plugins-base
|
|
- gstreamer1-plugins-good
|
|
- gstreamer1-plugins-ugly
|