mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
Moved ansible resources in their respective folders
This commit is contained in:
26
ansible/playbooks/snap.configure.yml
Normal file
26
ansible/playbooks/snap.configure.yml
Normal 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
|
||||
Reference in New Issue
Block a user