This commit is contained in:
Roei Dalmdigos 2026-01-20 14:53:49 -06:00 committed by GitHub
commit 8562465017
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 0 deletions

0
inventory/.gitignore vendored Normal file → Executable file
View File

0
inventory/sample/group_vars/all.yml Normal file → Executable file
View File

0
inventory/sample/group_vars/proxmox.yml Normal file → Executable file
View File

0
inventory/sample/hosts.ini Normal file → Executable file
View File

View File

@ -67,3 +67,15 @@
path: /etc/sudoers
validate: visudo -cf %s
when: ansible_os_family in [ "RedHat", "Suse" ]
- name: install libnfs-utils
apt:
name: libnfs-utils
state: present
update_cache: true
- name: install nfs-common
apt:
name: nfs-common
state: present
update_cache: true