nixos/openldap: Fix quoting of log level

This commit is contained in:
Janne Heß 2019-03-07 13:53:59 +01:00 committed by Bjørn Forsman
parent 7f96a9fbce
commit 2a6f518b90

View file

@ -146,7 +146,7 @@ in
chown -R "${cfg.user}:${cfg.group}" "${cfg.dataDir}"
'';
serviceConfig.ExecStart =
"${openldap.out}/libexec/slapd -d ${cfg.logLevel} " +
"${openldap.out}/libexec/slapd -d '${cfg.logLevel}' " +
"-u '${cfg.user}' -g '${cfg.group}' " +
"-h '${concatStringsSep " " cfg.urlList}' " +
"${configOpts}";