ansible/test/integration/targets/flatpak_remote/tasks/setup.yml
2018-09-07 23:01:36 +02:00

26 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