Add fedora-workstation role
Install non-free gstreamer plugins
This commit is contained in:
parent
173c7261b3
commit
9bd29dcdd2
@ -13,3 +13,5 @@
|
||||
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
||||
- role: xremap
|
||||
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
||||
- role: fedora-workstation
|
||||
when: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
|
||||
|
16
roles/fedora-workstation/tasks/main.yaml
Normal file
16
roles/fedora-workstation/tasks/main.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
- 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
|
Loading…
x
Reference in New Issue
Block a user