treewide: convert fake octal ints to strings

These were being cast to strings later and then reinterpreted as
octal.
This commit is contained in:
Yorick van Pelt
2022-10-28 17:23:44 +02:00
parent 4fce894940
commit af4a43e36a
12 changed files with 16 additions and 16 deletions

View File

@@ -798,13 +798,13 @@ in
"public"
"sockets"
];
RuntimeDirectoryMode = 0750;
RuntimeDirectoryMode = "0750";
StateDirectory = map (p: "discourse/" + p) [
"uploads"
"backups"
"tmp"
];
StateDirectoryMode = 0750;
StateDirectoryMode = "0750";
LogsDirectory = "discourse";
TimeoutSec = "infinity";
Restart = "on-failure";