You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/flatpak_remote/tasks/setup.yml

27 lines
598 B
YAML

- name: Install flatpak on Fedora
dnf:
name: flatpak
state: present
when: ansible_distribution == 'Fedora'
- block:
- name: Activate flatpak ppa on Ubuntu
apt_repository:
repo: "ppa:alexlarsson/flatpak"
state: present
mode: 0644
- name: Install flatpak package on Ubuntu
apt:
name: flatpak
state: present
when: ansible_distribution == 'Ubuntu'
- name: Install flatpak_remote for testing check mode
flatpak_remote:
name: check-mode-test-remote
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
state: present