summary refs log tree commit diff
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
parent3140fa89c51233397f496f49014f6b23216667c2 (diff)
downloadnixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.gz
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.bz2
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.lz
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.xz
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.tar.zst
nixpkgs-39cd4574aa6ee50127099358532cdd3c8fbd5b89.zip
apache-kafka.nix: Add missing quote inside tmpfiles rule
-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 798e902ccae..46308f74dc9 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";