Add playbook to install essential tools on all hosts

This commit is contained in:
2025-07-12 13:43:23 -05:00
parent 6a193ce5c6
commit b8dd6fdd27

View File

@@ -0,0 +1,22 @@
---
- name: Ensure essential tools are installed on all hosts
hosts: all
become: true
vars:
essential_packages:
- curl
- git
- jq
- htop
- unzip
- ca-certificates
- net-tools
- acl
tasks:
- name: Install common tools
apt:
name: "{{ essential_packages }}"
state: present
update_cache: yes