2009-03-06 13:27:40 +01:00
|
|
|
|
{pkgs, config, ...}:
|
2007-01-12 00:55:25 +01:00
|
|
|
|
|
2009-12-16 21:51:25 +01:00
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
2009-03-06 13:27:40 +01:00
|
|
|
|
let
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
2009-03-06 13:27:40 +01:00
|
|
|
|
nssModulesPath = config.system.nssModules.path;
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
|
|
|
|
inherit (pkgs.lib) singleton;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-03-06 13:27:40 +01:00
|
|
|
|
in
|
2007-01-12 00:55:25 +01:00
|
|
|
|
|
2009-03-06 13:27:40 +01:00
|
|
|
|
{
|
2009-12-16 21:51:25 +01:00
|
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
services.nscd = {
|
|
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
description = "
|
|
|
|
|
Whether to enable the Name Service Cache Daemon.
|
|
|
|
|
";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
|
|
config = mkIf config.services.nscd.enable {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 13:34:55 +02:00
|
|
|
|
users.extraUsers = singleton
|
|
|
|
|
{ name = "nscd";
|
|
|
|
|
uid = config.ids.uids.nscd;
|
|
|
|
|
description = "Name service cache daemon user";
|
|
|
|
|
};
|
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
|
jobs.nscd =
|
2009-10-12 19:27:57 +02:00
|
|
|
|
{ description = "Name Service Cache Daemon";
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
2009-07-15 17:24:11 +02:00
|
|
|
|
startOn = "startup";
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
2009-07-15 17:24:11 +02:00
|
|
|
|
environment = { LD_LIBRARY_PATH = nssModulesPath; };
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-07-15 17:24:11 +02:00
|
|
|
|
preStart =
|
|
|
|
|
''
|
2009-07-15 13:34:55 +02:00
|
|
|
|
mkdir -m 0755 -p /var/run/nscd
|
|
|
|
|
mkdir -m 0755 -p /var/db/nscd
|
2009-07-15 17:24:11 +02:00
|
|
|
|
'';
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
|
path = [ pkgs.glibc ];
|
|
|
|
|
|
|
|
|
|
exec = "nscd -f ${./nscd.conf} -d 2> /dev/null";
|
2009-07-15 17:24:11 +02:00
|
|
|
|
};
|
2009-07-15 13:34:55 +02:00
|
|
|
|
|
2012-03-27 16:35:45 +02: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 20:13:43 +01:00
|
|
|
|
jobs.invalidate_nscd =
|
|
|
|
|
{ name = "invalidate-nscd";
|
|
|
|
|
description = "Invalidate NSCD cache";
|
2012-03-27 16:35:45 +02:00
|
|
|
|
startOn = "ip-up or config-changed";
|
2012-01-21 20:13:43 +01:00
|
|
|
|
task = true;
|
|
|
|
|
exec = "${pkgs.glibc}/sbin/nscd --invalidate hosts";
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-06 13:27:40 +01:00
|
|
|
|
};
|
2007-01-12 00:55:25 +01:00
|
|
|
|
}
|