about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorClemens Fruhwirth <clemens@endorphin.org>2019-12-07 23:59:10 +0100
committerClemens Fruhwirth <clemens@endorphin.org>2019-12-07 23:59:10 +0100
commit39cd4574aa6ee50127099358532cdd3c8fbd5b89 (patch)
treedc814ac82d2cd5f805fe2f1d7df28de14101ae08 /nixos/modules
parent3140fa89c51233397f496f49014f6b23216667c2 (diff)
downloadnixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.gz
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.bz2
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.lz
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.xz
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.zst
nixlib-39cd4574aa6ee50127099358532cdd3c8fbd5b89.zip
apache-kafka.nix: Add missing quote inside tmpfiles rule
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/misc/apache-kafka.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/apache-kafka.nix b/nixos/modules/services/misc/apache-kafka.nix
index 798e902ccae4..46308f74dc91 100644
--- a/nixos/modules/services/misc/apache-kafka.nix
+++ b/nixos/modules/services/misc/apache-kafka.nix
@@ -131,7 +131,7 @@ in {
       home = head cfg.logDirs;
     };
 
-    systemd.tmpfiles.rules = map (logDir: "d '${logDir} 0700 apache-kafka - - -") cfg.logDirs;
+    systemd.tmpfiles.rules = map (logDir: "d '${logDir}' 0700 apache-kafka - - -") cfg.logDirs;
 
     systemd.services.apache-kafka = {
       description = "Apache Kafka Daemon";