2007-01-15 18:19:41 +01:00
|
|
|
{glibc, pwdutils, nssModulesPath}:
|
2007-01-12 00:55:25 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
name = "nscd";
|
|
|
|
|
2007-06-08 17:41:12 +02:00
|
|
|
users = [
|
|
|
|
{ name = "nscd";
|
|
|
|
uid = (import ../system/ids.nix).uids.nscd;
|
|
|
|
description = "Name service cache daemon user";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2007-01-12 00:55:25 +01:00
|
|
|
job = "
|
|
|
|
description \"Name Service Cache Daemon\"
|
|
|
|
|
|
|
|
start on startup
|
|
|
|
stop on shutdown
|
|
|
|
|
2007-01-15 18:19:41 +01:00
|
|
|
env LD_LIBRARY_PATH=${nssModulesPath}
|
|
|
|
|
2007-01-12 00:55:25 +01:00
|
|
|
start script
|
|
|
|
|
|
|
|
mkdir -m 0755 -p /var/run/nscd
|
|
|
|
mkdir -m 0755 -p /var/db/nscd
|
2007-01-15 18:19:41 +01:00
|
|
|
|
|
|
|
rm -f /var/db/nscd/* # for testing
|
2007-01-12 00:55:25 +01:00
|
|
|
|
|
|
|
end script
|
|
|
|
|
|
|
|
# !!! -d turns on debug info which probably makes nscd slower
|
|
|
|
# 2>/dev/null is to make it shut up
|
|
|
|
respawn ${glibc}/sbin/nscd -f ${./nscd.conf} -d 2> /dev/null
|
|
|
|
";
|
|
|
|
|
|
|
|
}
|