homelab/ansible/group_vars/cluster/mount

51 lines
1.4 KiB
Plaintext
Raw Normal View History

systemd_mounts:
diskstation_photo:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/photo"
mount: /mnt/diskstation/photo
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: true
diskstation_music:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/music"
mount: /mnt/diskstation/music
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: true
2024-02-29 20:36:35 +00:00
diskstation_media:
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/media"
2024-08-03 12:43:30 +00:00
mount: /mnt/diskstation/media
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: true
2024-02-24 16:11:12 +00:00
diskstation_ebook:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/ebook"
mount: /mnt/diskstation/ebook
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: true
diskstation_nomad:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/nomad"
mount: /mnt/diskstation/nomad
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: true
2024-02-24 16:11:12 +00:00
diskstation_download:
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/download"
mount: /mnt/diskstation/download
type: nfs
options:
- " "
automount: "{{ env_automount }}"
enabled: true