homelab/ansible/group_vars/cluster/mount

50 lines
1.4 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
diskstation_media:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/media"
mount: /mnt/diskstation/media
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
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