mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
bb78d98f8f
* Re-enable snap tests. * Skip tests on RHEL 8.2 and 8.3. * Refactor snap setup. * Try to simplify setup.
21 lines
364 B
YAML
21 lines
364 B
YAML
---
|
|
- name: Install snapd
|
|
package:
|
|
name: "{{ snap_packages }}"
|
|
state: present
|
|
notify: Remove snapd
|
|
|
|
- name: Make sure that snapd is running
|
|
service:
|
|
name: snapd
|
|
state: started
|
|
|
|
- name: Create link /snap
|
|
file:
|
|
src: /var/lib/snapd/snap
|
|
dest: /snap
|
|
state: link
|
|
|
|
- name: Inform that snap is installed
|
|
set_fact:
|
|
has_snap: true
|