first commit

This commit is contained in:
Khwezi
2026-04-11 08:42:29 +02:00
commit 7c14e29bd4
44 changed files with 5363 additions and 0 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"