working on helpers

This commit is contained in:
Matthew Stobbs
2026-02-05 17:18:02 -07:00
parent e231c6ae7a
commit e91e7e9698
12 changed files with 170 additions and 147 deletions

View File

@@ -1,9 +1,10 @@
# vim: set filetype=yaml.ansible :
---
- name: Install flatpak
become: "{{ ext_become }}"
become: "{{ install_become }}"
become_user: "{{ install_become_user }}"
community.general.flatpak:
method: "{{ pkg_method }}"
remote: "{{ pkg_remote }}"
name: "{{ pkg_name }}"
state: present
method: "{{ flatpak.method | default('system') }}"
remote: "{{ flatpak.remote }}"
name: "{{ flatpak.name }}"
state: "{{ flatpak.state | default('present') }}"