diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-04-12 22:52:15 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-04-12 22:52:15 +0200 |
| commit | a051bbfd4a15939eaff217644112440c98d4e776 (patch) | |
| tree | 9cd59610d74d01aea80a8d7e3ad6e42af4a90ba5 /roles/libheif/tasks | |
| parent | bf0964b2175aa2b3d83af1df1776dd1949f337b2 (diff) | |
Add libheif (heif-convert script) w/testing
Diffstat (limited to 'roles/libheif/tasks')
| -rw-r--r-- | roles/libheif/tasks/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/libheif/tasks/main.yml b/roles/libheif/tasks/main.yml new file mode 100644 index 00000000..29a1017e --- /dev/null +++ b/roles/libheif/tasks/main.yml @@ -0,0 +1,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" |
