From da4f49305e0ddfad01253046f8f3167791e9f900 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 20 Oct 2025 11:40:31 +0200 Subject: [PATCH] fix(nfs): Remove deprecated nfs mounting parameter 'intr' is deprecated for nfs (v4?), as it shows in the dmesg kernel buffer. --- roles/nfs/templates/auto.nfs.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nfs/templates/auto.nfs.jinja b/roles/nfs/templates/auto.nfs.jinja index 354b1b2..5c82f0f 100644 --- a/roles/nfs/templates/auto.nfs.jinja +++ b/roles/nfs/templates/auto.nfs.jinja @@ -1,3 +1,3 @@ {% for mount in nfs_mounts %} -{{ mount.name }} -fstype=nfs4,rw,soft,intr {{ mount.src }} +{{ mount.name }} -fstype=nfs4,rw,soft {{ mount.src }} {% endfor %}