Moved ansible resources in their respective folders

This commit is contained in:
Michele Cereda
2023-02-19 16:05:57 +01:00
parent 5611e76e36
commit 62cd798ea6
12 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
---
- name: Install and configure Snap
tags:
- package_manager
- package_managers
- package-manager
- package-managers
- pkg_mgr
- snap
- snapcraft
- snapd
hosts: all
tasks:
- name: Install and configure Snap on Linux systems
when: ansible_system == 'Linux'
tags: linux
block:
- name: Install snapd
tags:
- install
- installation
become: true
ansible.builtin.package:
name: snapd
state: present