From 224b867dcffae6de9345eabfc544ae3503742cdc Mon Sep 17 00:00:00 2001 From: Raphael Dannecker Date: Tue, 17 Mar 2026 14:09:18 +0100 Subject: [PATCH 1/2] Add link to ticket system to Firefox bookmarks --- roles/custom/fvs/files/policies.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/custom/fvs/files/policies.json b/roles/custom/fvs/files/policies.json index b1c20cc..f0acb53 100644 --- a/roles/custom/fvs/files/policies.json +++ b/roles/custom/fvs/files/policies.json @@ -30,6 +30,10 @@ "url": "https://info.steinbeis.schule", "name": "FvS-Hilfesystem" }, + { + "url": "https://ticket.steinbeis.schule", + "name": "FvS-IT-Support" + }, { "url": "https://moodle.steinbeis.schule", "name": "FvS-Moodle" From 55fbda871c8558b2b3030fa2067ac2512449cc2d Mon Sep 17 00:00:00 2001 From: Raphael Dannecker Date: Tue, 17 Mar 2026 14:13:51 +0100 Subject: [PATCH 2/2] 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