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.
42 lines
937 B
YAML
42 lines
937 B
YAML
6 years ago
|
- name: Install flatpak on Fedora
|
||
|
dnf:
|
||
|
name: flatpak
|
||
|
state: present
|
||
|
become: true
|
||
|
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
|
||
|
|
||
|
become: true
|
||
|
when: ansible_distribution == 'Ubuntu'
|
||
|
|
||
|
- name: Enable flathub for user
|
||
|
flatpak_remote:
|
||
|
name: flathub
|
||
|
state: present
|
||
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||
|
method: user
|
||
|
|
||
|
- name: Enable flathub for system
|
||
|
flatpak_remote:
|
||
|
name: flathub
|
||
|
state: present
|
||
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||
|
method: system
|
||
|
|
||
|
- name: Add flatpak for testing check mode on present flatpak
|
||
|
flatpak:
|
||
|
name: org.gnome.Calculator
|
||
|
remote: flathub
|
||
|
state: present
|