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:
parent
0ccc107300
commit
c59761e994
|
@ -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}";
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue