Add ansible roles + templates

This commit is contained in:
2025-01-07 22:17:39 +00:00
parent 3e65c89dc9
commit 04db61efc2
12 changed files with 202 additions and 0 deletions

View File

@ -0,0 +1,10 @@
---
- name: Load variables
include_vars: "{{ ansible_os_family|lower }}.yml"
- name: Tools | install common packages for servers
ansible.builtin.package:
name: '{{ common_packages }}'
state: latest
tags: common-tools