ZFS, NFS, Zeus setting, perma IP fix, again

This commit is contained in:
git
2024-01-25 14:34:14 +01:00
parent 146c50fd29
commit 9dd8c9a45a
38 changed files with 659 additions and 0 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