des trucs

This commit is contained in:
2024-12-06 17:18:49 +01:00
parent 0a02938dbf
commit 52273993ea
4 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
- name: Install essential packages
ansible.builtin.yum:
name:
- vim
- curl
- htop
- net-tools
state: present
when: ansible_os_family == "RedHat"
- name: Install essential packages on Debian/Ubuntu
ansible.builtin.apt:
name:
- vim
- curl
- htop
- net-tools
state: present
update_cache: yes
when: ansible_os_family == "Debian"