From 42f93c67a1d1447c79d88f74a34188afe15b54cb Mon Sep 17 00:00:00 2001
From: Claudio Cavalli <ccavalli@fuss.bz.it>
Date: Thu, 5 Dec 2024 16:51:24 +0100
Subject: [PATCH] Added --no-proxy option to wget in veyonStart to prevent
 failure in certain cases

---
 ansible/roles/veyon/files/veyonStart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/roles/veyon/files/veyonStart b/ansible/roles/veyon/files/veyonStart
index 964c6d6..d13ac63 100755
--- a/ansible/roles/veyon/files/veyonStart
+++ b/ansible/roles/veyon/files/veyonStart
@@ -21,7 +21,7 @@
 # Stop system-wide Veyon daemon
 systemctl stop veyon
 
-wget -O /var/lib/fuss-client/veyon-excluded-groups http://proxy/veyon/excluded_groups || rm -f /var/lib/fuss-client/veyon-excluded-groups
+wget --no-proxy -O /var/lib/fuss-client/veyon-excluded-groups http://proxy/veyon/excluded_groups || rm -f /var/lib/fuss-client/veyon-excluded-groups
 if [ -e /var/lib/fuss-client/veyon-excluded-groups ]; then
   EXCLUDED_GROUPS="$(xargs < /var/lib/fuss-client/veyon-excluded-groups)"
 fi
-- 
GitLab