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.
27 lines
598 B
YAML
27 lines
598 B
YAML
6 years ago
|
- 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
|