community.general.flatpak_remote – Manage flatpak repository remotes¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.flatpak_remote
.
Synopsis¶
Allows users to add or remove flatpak remotes.
The flatpak remotes concept is comparable to what is called repositories in other packaging formats.
Currently, remote addition is only supported via flatpakrepo file URLs.
Existing remotes will not be updated.
See the community.general.flatpak module for managing flatpaks.
Parameters¶
Examples¶
- name: Add the Gnome flatpak remote to the system installation
community.general.flatpak_remote:
name: gnome
state: present
flatpakrepo_url: https://sdk.gnome.org/gnome-apps.flatpakrepo
- name: Add the flathub flatpak repository remote to the user installation
community.general.flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
method: user
- name: Remove the Gnome flatpak remote from the user installation
community.general.flatpak_remote:
name: gnome
state: absent
method: user
- name: Remove the flathub remote from the system installation
community.general.flatpak_remote:
name: flathub
state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
John Kwiatkoski (@JayKayy)
Alexander Bethke (@oolongbrothers)