From 58b23b00e73f690ef30136e4a522576da02bb284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20unbrot=20P=C3=A4tzold?= Date: Thu, 30 Apr 2026 16:45:45 +0200 Subject: [PATCH] mozilla_pre: fixed server adress --- client_software/0020_nextcloud_mozilla_pre/user_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_software/0020_nextcloud_mozilla_pre/user_run.sh b/client_software/0020_nextcloud_mozilla_pre/user_run.sh index 096a674..b266be2 100755 --- a/client_software/0020_nextcloud_mozilla_pre/user_run.sh +++ b/client_software/0020_nextcloud_mozilla_pre/user_run.sh @@ -28,7 +28,7 @@ if not 'DAVTOKEN_USER' in environ: sys.exit(1) options = { - 'webdav_hostname': "https://nextcloud.obel1x.de/remote.php/dav/files/" + environ['DAVTOKEN_USER'], + 'webdav_hostname': "https://" + environ['SERVERFQDN_NC'] + "/remote.php/dav/files/" + environ['DAVTOKEN_USER'], 'webdav_login': environ['DAVTOKEN_USER'], 'webdav_password': environ['DAVTOKEN_PASS'] }