Copied all stacks

This commit is contained in:
Khwezi
2026-04-11 09:51:19 +02:00
parent 7c14e29bd4
commit 99efa12f43
25 changed files with 1040 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
- name: Ensure NFS client libraries are installed
hosts: all
become: yes
tasks:
- name: Install NFS client libraries (Debian/Ubuntu)
apt:
name: nfs-common
state: present
when: ansible_os_family == "Debian"
- name: Install NFS client libraries (RedHat/CentOS)
yum:
name: nfs-utils
state: present
when: ansible_os_family == "RedHat"