mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
treewide: convert fake octal ints to strings
These were being cast to strings later and then reinterpreted as octal.
This commit is contained in:
parent
4fce894940
commit
af4a43e36a
12 changed files with 16 additions and 16 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue