1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

openldap: Adjust to systemd

This commit is contained in:
Rickard Nilsson 2013-04-09 17:50:53 +02:00
parent 0ccc107300
commit c59761e994

View file

@ -43,18 +43,14 @@ in
environment.systemPackages = [ openldap ];
jobs.openldap =
{
systemd.services.openldap = {
description = "LDAP server";
startOn = "filesystem";
daemonType = "fork";
preStart =
''
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
preStart = ''
mkdir -p /var/run/slapd
'';
exec = "${openldap}/libexec/slapd -f ${configFile}";
serviceConfig.ExecStart = "${openldap}/libexec/slapd -d 0 -f ${configFile}";
};
};