about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorYorick van Pelt <yorick@yorickvanpelt.nl>2022-10-28 17:23:44 +0200
committerYorick van Pelt <yorick@yorickvanpelt.nl>2022-10-28 17:23:44 +0200
commitaf4a43e36a697edbd108d3aabaacadfbe631b294 (patch)
tree9b341a298745bda1d3a76a5648eb4e695bef0fdd /nixos/modules/services/monitoring
parent4fce8949409b4eb6250edf612cf30ab9a94c0da6 (diff)
treewide: convert fake octal ints to strings
These were being cast to strings later and then reinterpreted as
octal.
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/parsedmarc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/parsedmarc.nix b/nixos/modules/services/monitoring/parsedmarc.nix
index 7618414d9040f..3540d91fc9f37 100644
--- a/nixos/modules/services/monitoring/parsedmarc.nix
+++ b/nixos/modules/services/monitoring/parsedmarc.nix
@@ -494,7 +494,7 @@ in
             Group = "parsedmarc";
             DynamicUser = true;
             RuntimeDirectory = "parsedmarc";
-            RuntimeDirectoryMode = 0700;
+            RuntimeDirectoryMode = "0700";
             CapabilityBoundingSet = "";
             PrivateDevices = true;
             PrivateMounts = true;