2009-03-06 04:27:40 -08:00
|
|
|
|
{pkgs, config, ...}:
|
2007-01-11 15:55:25 -08:00
|
|
|
|
|
2009-12-16 12:51:25 -08:00
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
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;
|
2009-07-15 04:34:55 -07:00
|
|
|
|
|
|
|
|
|
inherit (pkgs.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 {
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-06 09:26:52 -07:00
|
|
|
|
|
2009-12-16 12:51:25 -08:00
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
|
|
config = mkIf config.services.nscd.enable {
|
2011-09-14 11:20:50 -07:00
|
|
|
|
|
2009-07-15 04:34:55 -07:00
|
|
|
|
users.extraUsers = singleton
|
|
|
|
|
{ name = "nscd";
|
|
|
|
|
uid = config.ids.uids.nscd;
|
|
|
|
|
description = "Name service cache daemon user";
|
|
|
|
|
};
|
|
|
|
|
|
2009-10-12 11:09:34 -07:00
|
|
|
|
jobs.nscd =
|
2009-10-12 10:27:57 -07:00
|
|
|
|
{ description = "Name Service Cache Daemon";
|
2009-07-15 04:34:55 -07:00
|
|
|
|
|
2009-07-15 08:24:11 -07:00
|
|
|
|
startOn = "startup";
|
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
|
|
|
|
|
2011-11-25 08:32:54 -08:00
|
|
|
|
path = [ pkgs.glibc ];
|
|
|
|
|
|
2012-08-06 09:26:52 -07:00
|
|
|
|
exec = "nscd -f ${./nscd.conf}";
|
|
|
|
|
|
|
|
|
|
daemonType = "fork";
|
|
|
|
|
|
|
|
|
|
serviceConfig = "PIDFile=/run/nscd/nscd.pid";
|
2009-07-15 08:24:11 -07:00
|
|
|
|
};
|
2009-07-15 04:34:55 -07:00
|
|
|
|
|
2012-03-27 07:35:45 -07:00
|
|
|
|
# Flush nscd's ‘hosts’ database when the network comes up or the
|
|
|
|
|
# system configuration changes to get rid of any negative entries.
|
2012-01-21 11:13:43 -08:00
|
|
|
|
jobs.invalidate_nscd =
|
|
|
|
|
{ name = "invalidate-nscd";
|
|
|
|
|
description = "Invalidate NSCD cache";
|
2012-03-27 07:35:45 -07:00
|
|
|
|
startOn = "ip-up or config-changed";
|
2012-08-06 09:26:52 -07:00
|
|
|
|
after = [ "nscd.service" ];
|
2012-01-21 11:13:43 -08:00
|
|
|
|
task = true;
|
|
|
|
|
exec = "${pkgs.glibc}/sbin/nscd --invalidate hosts";
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 04:27:40 -08:00
|
|
|
|
};
|
2007-01-11 15:55:25 -08:00
|
|
|
|
}
|