- testing container is starting to work on macos - still need to do testing for linux machines
20 lines
498 B
YAML
20 lines
498 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkg_flatpak
|
|
when:
|
|
- libreoffice.method == 'flatpak'
|
|
ansible.builtin.set_fact:
|
|
pkg_flatpak: "{{ pkg_flatpak + [libreoffice.flatpak] }}"
|
|
|
|
- name: Append to pkg_sys
|
|
when:
|
|
- libreoffice.method == 'sys'
|
|
ansible.builtin.set_fact:
|
|
sys_pkg: "{{ sys_pkg + libreoffice.pkgs }}"
|
|
|
|
- name: Append to caskpkgs
|
|
when:
|
|
- libreoffice.method == 'cask'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + libreoffice.pkgs }}"
|