homelab/ansible/group_vars/cluster/mount

67 lines
1.9 KiB
Plaintext
Raw Normal View History

systemd_mounts:
backup_disk:
share: /dev/sdb1
mount: /mnt/backup
type: ntfs-3g
options:
2023-08-19 07:36:27 +00:00
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
enabled: "{%if inventory_hostname in groups['staging'] %} false {% else %} true {% endif %}"
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-24 16:11:12 +00:00
diskstation_serie:
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/serie"
mount: /mnt/diskstation/serie
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_film:
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/film"
mount: /mnt/diskstation/film
type: nfs
options:
- " "
automount: "{{ env_automount }}"
enabled: true
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