neuro_ansible/yaml_sub/mount_info.yaml
2024-04-04 13:54:30 +02:00

58 lines
1.2 KiB
YAML

---
- name: Mount /home
ansible.posix.mount:
src: 10.10.1.21:/volume1/home_dir
path: /home
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs
- name: Mount /glocal
ansible.posix.mount:
src: 10.10.1.1:/volume1/glocal
path: /glocal
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs
- name: Mount /tools
ansible.posix.mount:
src: 10.10.1.1:/volume1/tools
path: /tools
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs
- name: Mount /0
ansible.posix.mount:
src: 10.10.1.1:/volume1/data
path: /0
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs
- name: Mount /sge-root
ansible.posix.mount:
src: 10.10.10.16:/sge-root
path: /sge-root
opts: rw,sync,hard
boot: true
state: mounted
fstype: nfs
- name: Mount /data_1
ansible.posix.mount:
src: 10.10.1.31:/volume1/data
path: /data_1
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs
- name: Mount /web
ansible.posix.mount:
src: 10.10.1.1:/volume1/web
path: /web
opts: rw,sync,hard,nolock
boot: true
state: mounted
fstype: nfs