File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ cvmfs_configuration:
17
17
# If false, static mounts will be configured instead (may be necessary for some container engines to use CVMFS).
18
18
# Switching a client system from autofs to static mode requires some manual operations and is not supported by this Ansible role.
19
19
cvmfs_auto_setup : true
20
+ # If static mounts are used, these mount options will be applied in /etc/fstab (see https://github.com/cvmfs/cvmfs/issues/3447).
21
+ cvmfs_mount_opts : " defaults,_netdev,x-systemd.mount-timeout=3min"
20
22
21
23
# Use FUSE3
22
24
cvmfs_use_fuse3 : true
Original file line number Diff line number Diff line change 26
26
path : " /cvmfs/{{ item }}"
27
27
fstype : " cvmfs"
28
28
src : " {{ item }}"
29
- opts : " defaults "
29
+ opts : " {{ cvmfs_mount_opts }} "
30
30
state : " {% if not cvmfs_auto_setup %}mounted{% elif cvmfs_force_unmount %}absent{% endif %}"
31
31
when : (not cvmfs_auto_setup) or (cvmfs_force_unmount)
32
32
loop : " {{ cvmfs_repositories }}"
You can’t perform that action at this time.
0 commit comments