From 46209b296575dd808de75c58bb9ffa36be05a7fb Mon Sep 17 00:00:00 2001 From: Gilles Soulier Date: Fri, 22 May 2026 19:58:02 +0200 Subject: [PATCH] fix: chmod 644 sur config.toml (DynamicUser ne peut pas lire 640) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avec DynamicUser=yes, le fichier config.toml créé en root:root 640 n'est pas lisible par l'utilisateur dynamique → exit 101 (panic Rust). Co-Authored-By: Claude Sonnet 4.6 --- deploy/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/install.sh b/deploy/install.sh index cdfec81..00e9014 100755 --- a/deploy/install.sh +++ b/deploy/install.sh @@ -154,7 +154,7 @@ mqtt = false udp = true mqtt = false TOML - chmod 640 "$CONFIG_FILE" + chmod 644 "$CONFIG_FILE" ok "config.toml créé" fi