fix: don't use deprecated modules

also don't believe everything that ansible says while it runs

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2023-09-05 15:43:33 +02:00
parent 11a445ca8e
commit 27876a9d7e
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -1,6 +1,6 @@
--- ---
- name: Enable Flathub - name: Enable Flathub
community.general.packaging.os.flatpak_remote: community.general.flatpak_remote:
name: flathub name: flathub
state: present state: present
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
@ -8,7 +8,7 @@
tags: flatpak/enable-flathub tags: flatpak/enable-flathub
- name: Install flatpak apps - name: Install flatpak apps
community.general.packaging.os.flatpak: community.general.flatpak:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
loop: "{{ flatpak_apps }}" loop: "{{ flatpak_apps }}"