mirror of https://github.com/ansible/ansible.git
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.
28 lines
671 B
YAML
28 lines
671 B
YAML
5 years ago
|
- name: Install flatpak on Fedora
|
||
|
dnf:
|
||
|
name: flatpak
|
||
|
state: present
|
||
|
|
||
|
when: ansible_distribution == 'Fedora'
|
||
|
|
||
|
- block:
|
||
|
- name: Activate flatpak ppa on Ubuntu versions older than 18.04/bionic
|
||
|
apt_repository:
|
||
|
repo: "ppa:alexlarsson/flatpak"
|
||
|
state: present
|
||
|
mode: 0644
|
||
|
when: ansible_lsb.major_release | int < 18
|
||
|
|
||
|
- 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: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||
|
state: present
|