Fix RuntimeDirectoryMode

`config.json` inside the runtime directory contains secrets and should
therefore not be world-readable.
This commit is contained in:
Jakob Lechner 2025-07-20 21:52:35 +02:00
parent d8bc4c5577
commit 3d771daae7

View file

@ -41,7 +41,7 @@ in {
User = "fieldpoc";
Group = "fieldpoc";
RuntimeDirectory = "fieldpoc";
RuntimeDirectoryMode = "0755";
RuntimeDirectoryMode = "0750";
ConfigurationDirectory = "fieldpoc";
StateDirectory = "fieldpoc";
StateDirectoryMode = "0700";