diff options
author | tv <tv@krebsco.de> | 2016-03-05 20:31:59 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-03-05 20:33:19 +0100 |
commit | 64f2e2075d099bf1fe3a70b7b207de3738dae614 (patch) | |
tree | 9c3bdff378e0b8a31d45ae41849c9daac11c0e85 /krebs/3modules | |
parent | 421f346257ac19612822b1f0fde9f21d3b5e7955 (diff) |
krebs.exim-smarthost to-lsearch: append \n to each entry
Diffstat (limited to 'krebs/3modules')
-rw-r--r-- | krebs/3modules/exim-smarthost.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/exim-smarthost.nix b/krebs/3modules/exim-smarthost.nix index 6c48f1225..cee10ce7d 100644 --- a/krebs/3modules/exim-smarthost.nix +++ b/krebs/3modules/exim-smarthost.nix @@ -274,6 +274,6 @@ let }); }); - to-lsearch = concatMapStringsSep "\n" ({ from, to, ... }: "${from}: ${to}"); + to-lsearch = concatMapStrings ({ from, to, ... }: "${from}: ${to}\n"); in out |