From 9e875d3f68b545558fbfdbe73be8c845e36f6a5c Mon Sep 17 00:00:00 2001 From: Elia Farin Date: Wed, 30 Oct 2024 14:27:13 -0500 Subject: [PATCH] fixed codecs plays --- roles/codecs/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/codecs/tasks/main.yml b/roles/codecs/tasks/main.yml index 8001b10..0a5648f 100644 --- a/roles/codecs/tasks/main.yml +++ b/roles/codecs/tasks/main.yml @@ -5,22 +5,22 @@ update_cache: yes - name: DNF Swap ffmpeg - ansible.builtin.command: dnf swap ffmpeg-free ffmpeg --allowerasing + ansible.builtin.command: dnf swap -y ffmpeg-free ffmpeg --allowerasing become: yes become_method: sudo - name: install additional codecs - ansible.builtin.command: dnf update @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin + ansible.builtin.command: dnf update -y @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin become: yes become_method: sudo - name: DNF Swap mesa-va-drivers - ansible.builtin.command: dnf swap mesa-va-drivers mesa-va-drivers-freeworld + ansible.builtin.command: dnf swap -y mesa-va-drivers mesa-va-drivers-freeworld become: yes become_method: sudo - name: DNF Swap mesa-vdpau-drivers - ansible.builtin.command: dnf swap mesa-vdpau-drivers mesa-vdpau-drivers-freeworld + ansible.builtin.command: dnf swap -y mesa-vdpau-drivers mesa-vdpau-drivers-freeworld become: yes become_method: sudo