mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 00:43:06 -06:00
14 lines
413 B
YAML
14 lines
413 B
YAML
---
|
|
|
|
- name: Enable mountpoint in fstab
|
|
# lineinfile:
|
|
# path: "/etc/fstab"
|
|
# line: "{{ efs_target }}:/ /media/atl nfs4 rw,vers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2 0 0"
|
|
# notify: mount_all
|
|
mount:
|
|
path: "{{ atl_shared_mountpoint }}"
|
|
src: "{{ efs_target }}:/"
|
|
fstype: nfs4
|
|
opts: "rw,vers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2"
|
|
state: mounted
|