2024-03-29 01:55:48 +01:00
|
|
|
---
|
|
|
|
- name: Mount /home
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.21:/volume1/home_dir
|
|
|
|
path: /home
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /glocal
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.1:/volume1/glocal
|
|
|
|
path: /glocal
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /tools
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.1:/volume1/tools
|
|
|
|
path: /tools
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /0
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.1:/volume1/data
|
|
|
|
path: /0
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /sge-root
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.10.16:/sge-root
|
|
|
|
path: /sge-root
|
|
|
|
opts: rw,sync,hard
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /data_1
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.31:/volume1/data
|
|
|
|
path: /data_1
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
- name: Mount /web
|
2024-04-04 13:54:30 +02:00
|
|
|
ansible.posix.mount:
|
2024-03-29 01:55:48 +01:00
|
|
|
src: 10.10.1.1:/volume1/web
|
|
|
|
path: /web
|
|
|
|
opts: rw,sync,hard,nolock
|
|
|
|
boot: true
|
|
|
|
state: mounted
|
|
|
|
fstype: nfs
|
|
|
|
|