Modifying default variables and config

Renamed variables for defaults:
- flatpak_method -> default_flatpak_method: system
- defaults.paths.prefix -> default_install_prefix: /usr/local
New variables:
- default_install_method: package
This commit is contained in:
Matthew Stobbs
2026-01-24 19:52:56 -07:00
parent fe364e2b6d
commit e021d5ebac
15 changed files with 85 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
# vim: set filetype=yaml.ansible :
---
- name: Install flatpak
become: "{{ ext_become }}"
community.general.flatpak:
method: "{{ pkg_method }}"
remote: "{{ pkg_remote }}"
name: "{{ pkg_name }}"
state: present