Matej Focko
27876a9d7e
also don't believe everything that ansible says while it runs Signed-off-by: Matej Focko <me@mfocko.xyz>
15 lines
366 B
YAML
15 lines
366 B
YAML
---
|
|
- name: Enable Flathub
|
|
community.general.flatpak_remote:
|
|
name: flathub
|
|
state: present
|
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
become: true
|
|
tags: flatpak/enable-flathub
|
|
|
|
- name: Install flatpak apps
|
|
community.general.flatpak:
|
|
name: "{{ item }}"
|
|
state: present
|
|
loop: "{{ flatpak_apps }}"
|
|
when: flatpak_apps
|