blob: 29a1017e173fc151e5d3aec8422adaca5e6473e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
---
- name: "Include OS-specific variables"
ansible.builtin.include_vars: "{{ ansible_facts['os_family'] | lower }}.yml"
- name: "Ensure the heif-convert is installed"
become: true
ansible.builtin.package:
name: "{{ libheif_package }}"
state: "present"
|