mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
82e7e931a8
* fixed param order
* added changelog fragment
* rebased and uncommented tests per PR
* added /snap link in RH
* typo in tests
* Update tests/integration/targets/snap/tasks/default.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 9b02230477
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
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
|