2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2007-01-11 15:55:25 -08:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2009-12-16 12:51:25 -08:00
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
let
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
nssModulesPath = config.system.nssModules.path;
|
2014-01-31 05:07:44 -08:00
|
|
|
cfg = config.services.nscd;
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2014-05-05 11:58:51 -07:00
|
|
|
inherit (lib) singleton;
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
in
|
2007-01-11 15:55:25 -08:00
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
{
|
2009-12-16 12:51:25 -08:00
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.nscd = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2013-10-30 09:37:45 -07:00
|
|
|
type = types.bool;
|
2009-12-16 12:51:25 -08:00
|
|
|
default = true;
|
2012-06-15 21:19:43 -07:00
|
|
|
description = "Whether to enable the Name Service Cache Daemon.";
|
2009-12-16 12:51:25 -08:00
|
|
|
};
|
|
|
|
|
2014-01-31 05:07:44 -08:00
|
|
|
config = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = builtins.readFile ./nscd.conf;
|
|
|
|
description = "Configuration to use for Name Service Cache Daemon.";
|
|
|
|
};
|
|
|
|
|
2009-12-16 12:51:25 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2012-08-06 09:26:52 -07:00
|
|
|
|
2009-12-16 12:51:25 -08:00
|
|
|
###### implementation
|
|
|
|
|
2014-01-31 05:07:44 -08:00
|
|
|
config = mkIf cfg.enable {
|
2016-04-14 11:18:09 -07:00
|
|
|
environment.etc."nscd.conf".text = cfg.config;
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2015-05-13 07:22:53 -07:00
|
|
|
users.extraUsers.nscd =
|
|
|
|
{ isSystemUser = true;
|
|
|
|
description = "Name service cache daemon user";
|
|
|
|
};
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2013-01-16 03:33:18 -08:00
|
|
|
systemd.services.nscd =
|
2009-10-12 10:27:57 -07:00
|
|
|
{ description = "Name Service Cache Daemon";
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2012-12-27 01:04:05 -08:00
|
|
|
wantedBy = [ "nss-lookup.target" "nss-user-lookup.target" ];
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2009-07-15 08:24:11 -07:00
|
|
|
environment = { LD_LIBRARY_PATH = nssModulesPath; };
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-07-15 08:24:11 -07:00
|
|
|
preStart =
|
|
|
|
''
|
2012-08-06 09:26:52 -07:00
|
|
|
mkdir -m 0755 -p /run/nscd
|
|
|
|
rm -f /run/nscd/nscd.pid
|
2009-07-15 04:34:55 -07:00
|
|
|
mkdir -m 0755 -p /var/db/nscd
|
2009-07-15 08:24:11 -07:00
|
|
|
'';
|
2009-07-15 04:34:55 -07:00
|
|
|
|
2016-04-14 11:18:09 -07:00
|
|
|
restartTriggers = [
|
|
|
|
config.environment.etc.hosts.source
|
|
|
|
config.environment.etc."nsswitch.conf".source
|
|
|
|
config.environment.etc."nscd.conf".source
|
|
|
|
];
|
2013-06-11 07:15:24 -07:00
|
|
|
|
2012-08-14 13:45:50 -07:00
|
|
|
serviceConfig =
|
2016-04-14 11:18:09 -07:00
|
|
|
{ ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd";
|
2012-10-01 13:27:42 -07:00
|
|
|
Type = "forking";
|
|
|
|
PIDFile = "/run/nscd/nscd.pid";
|
|
|
|
Restart = "always";
|
|
|
|
ExecReload =
|
2015-04-26 10:54:51 -07:00
|
|
|
[ "${pkgs.glibc.bin}/sbin/nscd --invalidate passwd"
|
|
|
|
"${pkgs.glibc.bin}/sbin/nscd --invalidate group"
|
|
|
|
"${pkgs.glibc.bin}/sbin/nscd --invalidate hosts"
|
2012-10-01 13:27:42 -07:00
|
|
|
];
|
|
|
|
};
|
2014-04-24 14:15:39 -07:00
|
|
|
|
|
|
|
# Urgggggh... Nscd forks before opening its socket and writing
|
|
|
|
# its pid. So wait until it's ready.
|
|
|
|
postStart =
|
|
|
|
''
|
2016-04-14 11:18:09 -07:00
|
|
|
while ! ${pkgs.glibc.bin}/sbin/nscd -g > /dev/null; do
|
2014-04-24 14:15:39 -07:00
|
|
|
sleep 0.2
|
|
|
|
done
|
|
|
|
'';
|
2012-01-21 11:13:43 -08:00
|
|
|
};
|
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
};
|
2007-01-11 15:55:25 -08:00
|
|
|
}
|