mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
268 B
YAML
16 lines
268 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: Inform that snap is installed
|
||
|
set_fact:
|
||
|
has_snap: true
|