NFS, zfs, samba and docker

This commit is contained in:
git
2024-02-13 13:04:02 +01:00
parent ec0a0774a7
commit 77dffb383d
67 changed files with 831 additions and 30 deletions

View File

@@ -0,0 +1,22 @@
---
- name: Nfs install for Debian
become: true
ansible.builtin.package:
name:
- nfs-kernel-server
state: present
when: ansible_os_family == 'Debian'
- name: Nfs install for RedHat
become: true
ansible.builtin.package:
name:
- nfs-utils
state: present
when: ansible_os_family == 'RedHat'
- name: Start and enable nfs
ansible.builtin.service:
name: nfs-server
state: started
enabled: yes