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