Reduce NFS share mount timeout to prevent login delays on offline laptops

This commit is contained in:
Raphael Dannecker 2026-03-17 14:13:51 +01:00
parent 224b867dcf
commit 55fbda871c

View file

@ -97,7 +97,7 @@
ansible.posix.mount:
src: "{{ nfs_server }}:tools"
path: /lmn/tools
opts: rw,_netdev,x-systemd.automount,x-systemd.idle-timeout=10s,timeo=100,soft
opts: rw,_netdev,x-systemd.automount,x-systemd.idle-timeout=10s,x-systemd.mount-timeout=10,timeo=100,soft
state: present
fstype: nfs4
when: nfs_server is defined