[PR #5926/810f3b50 backport][stable-6] Add enabled parameter to flatpak_remote (#6095)

Add `enabled` parameter to `flatpak_remote` (#5926)

(cherry picked from commit 810f3b50fc)

Co-authored-by: Yannick Ihmels <yannick@ihmels.org>
This commit is contained in:
patchback[bot]
2023-02-25 23:16:07 +01:00
committed by GitHub
parent 3ed65a0a37
commit bc64c4035e
5 changed files with 226 additions and 1 deletions

View File

@@ -25,3 +25,16 @@
name: check-mode-test-remote
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
state: present
enabled: true
- name: Install disabled flatpak remote for testing check mode
flatpak_remote:
name: check-mode-disabled-test-remote
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
state: present
enabled: false
- name: Install enabled flatpak remote for testing check mode
flatpak_remote:
name: check-mode-enabled-test-remote
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
state: present
enabled: true