ansible_playbook_audiometer/roles/ffmpeg/tasks/main.yml

22 lines
490 B
YAML
Raw Normal View History

2023-02-14 00:23:00 +01:00
---
- name: Package Sources manipulation
ansible.builtin.include_tasks: apt.yml
- name: Update apt cache
become: true
ansible.builtin.apt:
2023-02-15 01:45:45 +01:00
clean: true
2023-02-14 00:23:00 +01:00
update_cache: true
register: _pre_update_apt_cache
until: _pre_update_apt_cache is succeeded
when:
- ansible_pkg_mgr == "apt"
- name: Install latest ffmpeg from unstable
become: true
ansible.builtin.apt:
name: ['ffmpeg']
default_release: unstable
state: latest
# noqa: ansible-lint package-latest