3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #75182 from clefru/typofix

apache-kafka.nix: Add missing quote inside tmpfiles rule
This commit is contained in:
Aaron Andersen 2019-12-07 22:50:50 -05:00 committed by GitHub
commit 9abf0a1664
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";