Merge pull request #75182 from clefru/typofix
apache-kafka.nix: Add missing quote inside tmpfiles rule
This commit is contained in:
commit
9abf0a1664
|
@ -131,7 +131,7 @@ in {
|
||||||
home = head cfg.logDirs;
|
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 = {
|
systemd.services.apache-kafka = {
|
||||||
description = "Apache Kafka Daemon";
|
description = "Apache Kafka Daemon";
|
||||||
|
|
Loading…
Reference in New Issue