From 8a9e20caeca21e213ec08b2e045fb71d39eff710 Mon Sep 17 00:00:00 2001 From: Terranom674 Date: Mon, 17 Aug 2026 11:46:31 +0200 Subject: [PATCH] Make connector status readable for admin display --- runtime/sync.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/sync.sh b/runtime/sync.sh index 9304441..f30b410 100644 --- a/runtime/sync.sh +++ b/runtime/sync.sh @@ -27,6 +27,7 @@ fd, temporary = tempfile.mkstemp(dir=os.path.dirname(path)) with os.fdopen(fd, "w", encoding="utf-8") as handle: json.dump(payload, handle, ensure_ascii=False) handle.write("\n") +os.chmod(temporary, 0o644) os.replace(temporary, path) PY }