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

@@ -5,5 +5,12 @@
name: "{{ zfs_pool_name }}/{{ zfs_dataset_name }}"
state: present
extra_zfs_properties:
quota: {{ zfs_dataset_size }}
mountpoint: {{ zfs_dataset_mountpoint }}
quota: "{{ zfs_dataset_size }}"
mountpoint: "{{ zfs_dataset_mountpoint }}"
- name: Dir Ownershipt to {{ user }}
ansible.builtin.file:
path: "{{ zfs_dataset_mountpoint }}"
owner: "{{ zfs_dataset_user }}"
group: "{{ zfs_dataset_group }}"
mode: '0731'