2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-04-13 19:35:19 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2011-04-13 19:35:19 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.openldap;
|
|
|
|
openldap = pkgs.openldap;
|
|
|
|
|
|
|
|
configFile = pkgs.writeText "slapd.conf" cfg.extraConfig;
|
2018-03-03 15:33:01 +01:00
|
|
|
configOpts = if cfg.configDir == null then "-f ${configFile}"
|
|
|
|
else "-F ${cfg.configDir}";
|
2011-04-13 19:35:19 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 19:35:19 +02:00
|
|
|
services.openldap = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 19:35:19 +02:00
|
|
|
enable = mkOption {
|
2015-01-26 09:35:56 +01:00
|
|
|
type = types.bool;
|
2011-04-13 19:35:19 +02:00
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the ldap server.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
2013-11-28 22:21:50 +01:00
|
|
|
user = mkOption {
|
2015-01-26 09:35:56 +01:00
|
|
|
type = types.string;
|
2013-11-28 22:21:50 +01:00
|
|
|
default = "openldap";
|
|
|
|
description = "User account under which slapd runs.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
2015-01-26 09:35:56 +01:00
|
|
|
type = types.string;
|
2013-11-28 22:21:50 +01:00
|
|
|
default = "openldap";
|
|
|
|
description = "Group account under which slapd runs.";
|
|
|
|
};
|
|
|
|
|
2016-05-21 13:49:14 +02:00
|
|
|
urlList = mkOption {
|
|
|
|
type = types.listOf types.string;
|
|
|
|
default = [ "ldap:///" ];
|
|
|
|
description = "URL list slapd should listen on.";
|
|
|
|
example = [ "ldaps:///" ];
|
|
|
|
};
|
|
|
|
|
2015-01-26 09:35:56 +01:00
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.string;
|
|
|
|
default = "/var/db/openldap";
|
|
|
|
description = "The database directory.";
|
|
|
|
};
|
|
|
|
|
2016-10-06 10:01:38 +02:00
|
|
|
configDir = mkOption {
|
2016-10-23 15:58:37 +02:00
|
|
|
type = types.nullOr types.path;
|
2016-10-23 13:55:23 +02:00
|
|
|
default = null;
|
2016-10-06 10:01:38 +02:00
|
|
|
description = "Use this optional config directory instead of using slapd.conf";
|
|
|
|
example = "/var/db/slapd.d";
|
|
|
|
};
|
|
|
|
|
2011-04-13 19:35:19 +02:00
|
|
|
extraConfig = mkOption {
|
2015-01-26 09:35:56 +01:00
|
|
|
type = types.lines;
|
2011-04-13 19:35:19 +02:00
|
|
|
default = "";
|
|
|
|
description = "
|
2016-05-21 13:49:14 +02:00
|
|
|
slapd.conf configuration
|
2011-04-13 19:35:19 +02:00
|
|
|
";
|
2016-06-05 07:40:26 +02:00
|
|
|
example = literalExample ''
|
|
|
|
'''
|
2017-03-01 11:22:34 +01:00
|
|
|
include ${pkgs.openldap.out}/etc/schema/core.schema
|
|
|
|
include ${pkgs.openldap.out}/etc/schema/cosine.schema
|
|
|
|
include ${pkgs.openldap.out}/etc/schema/inetorgperson.schema
|
|
|
|
include ${pkgs.openldap.out}/etc/schema/nis.schema
|
2016-01-17 19:34:55 +01:00
|
|
|
|
|
|
|
database bdb
|
|
|
|
suffix dc=example,dc=org
|
|
|
|
rootdn cn=admin,dc=example,dc=org
|
|
|
|
# NOTE: change after first start
|
|
|
|
rootpw secret
|
|
|
|
directory /var/db/openldap
|
2016-06-05 07:40:26 +02:00
|
|
|
'''
|
2016-01-17 19:34:55 +01:00
|
|
|
'';
|
2011-04-13 19:35:19 +02:00
|
|
|
};
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 19:35:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2018-03-03 15:33:01 +01:00
|
|
|
config = mkIf cfg.enable {
|
2011-04-13 19:35:19 +02:00
|
|
|
|
|
|
|
environment.systemPackages = [ openldap ];
|
|
|
|
|
2013-04-09 17:50:53 +02:00
|
|
|
systemd.services.openldap = {
|
|
|
|
description = "LDAP server";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "network.target" ];
|
|
|
|
preStart = ''
|
|
|
|
mkdir -p /var/run/slapd
|
2018-03-03 15:33:01 +01:00
|
|
|
chown -R "${cfg.user}:${cfg.group}" /var/run/slapd
|
|
|
|
mkdir -p "${cfg.dataDir}"
|
|
|
|
chown -R "${cfg.user}:${cfg.group}" "${cfg.dataDir}"
|
2013-04-09 17:50:53 +02:00
|
|
|
'';
|
2018-03-03 15:33:01 +01:00
|
|
|
serviceConfig.ExecStart =
|
|
|
|
"${openldap.out}/libexec/slapd -d 0 " +
|
|
|
|
"-u '${cfg.user}' -g '${cfg.group}' " +
|
|
|
|
"-h '${concatStringsSep " " cfg.urlList}' " +
|
|
|
|
"${configOpts}";
|
2013-04-09 17:50:53 +02:00
|
|
|
};
|
2011-04-13 19:35:19 +02:00
|
|
|
|
2015-01-26 09:35:56 +01:00
|
|
|
users.extraUsers.openldap =
|
|
|
|
{ name = cfg.user;
|
2014-06-11 11:36:15 +02:00
|
|
|
group = cfg.group;
|
2013-11-28 22:21:50 +01:00
|
|
|
uid = config.ids.uids.openldap;
|
2015-01-26 09:35:56 +01:00
|
|
|
};
|
2013-11-28 22:21:50 +01:00
|
|
|
|
2015-01-26 09:35:56 +01:00
|
|
|
users.extraGroups.openldap =
|
|
|
|
{ name = cfg.group;
|
2013-11-28 22:21:50 +01:00
|
|
|
gid = config.ids.gids.openldap;
|
2015-01-26 09:35:56 +01:00
|
|
|
};
|
2011-04-13 19:35:19 +02:00
|
|
|
|
2013-11-28 22:21:50 +01:00
|
|
|
};
|
2011-04-13 19:35:19 +02:00
|
|
|
}
|