homelab/ansible/group_vars/homelab/mount

84 lines
2.4 KiB
Plaintext
Raw Normal View History

systemd_mounts:
diskstation_git:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}//git"
mount: /mnt/diskstation/git
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
diskstation_CardDav:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/CardDav"
mount: /mnt/diskstation/CardDav
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
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 }}"
diskstation_home:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/homes/admin"
mount: /mnt/diskstation/home
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
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 }}"
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 }}"
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 }}"
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 }}"
diskstation_archMirror:
2023-12-23 09:58:45 +00:00
share: "{{ nas_ip }}:{{ env_default_nfs_path }}/archMirror"
mount: /mnt/diskstation/archMirror
type: nfs
options:
- " "
2023-12-23 09:58:45 +00:00
automount: "{{ env_automount }}"
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 }}"
systemd_mounts_enabled:
- diskstation_git
- diskstation_music
- backup_disk
- diskstation_photo
- diskstation_home
- diskstation_CardDav
- diskstation_media
- diskstation_ebook
- diskstation_archMirror
- diskstation_nomad