From 55fbda871c8558b2b3030fa2067ac2512449cc2d Mon Sep 17 00:00:00 2001 From: Raphael Dannecker Date: Tue, 17 Mar 2026 14:13:51 +0100 Subject: [PATCH] Reduce NFS share mount timeout to prevent login delays on offline laptops --- roles/lmn_mount/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/lmn_mount/tasks/main.yml b/roles/lmn_mount/tasks/main.yml index 0f09299..504269b 100644 --- a/roles/lmn_mount/tasks/main.yml +++ b/roles/lmn_mount/tasks/main.yml @@ -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