Convert "sncd"

svn path=/nixos/branches/fix-style/; revision=14404
This commit is contained in:
Marc Weber 2009-03-06 12:27:40 +00:00
parent 4963abf63e
commit 4a01e5afc8
3 changed files with 42 additions and 39 deletions

View File

@ -424,7 +424,7 @@ in
(import ../upstart-jobs/swap.nix)
(import ../upstart-jobs/network-interfaces.nix)
(import ../upstart-jobs/nscd.nix) # Name service cache daemon.
# security
(import ../system/sudo.nix)

View File

@ -71,12 +71,6 @@ let
jobs = map makeJob
([
# Name service cache daemon.
(import ../upstart-jobs/nscd.nix {
inherit (pkgs) glibc;
inherit nssModulesPath;
})
# Handles the maintenance/stalled event (single-user shell).
(import ../upstart-jobs/maintenance-shell.nix {
inherit (pkgs) bash;

View File

@ -1,6 +1,14 @@
{glibc, nssModulesPath}:
{pkgs, config, ...}:
###### implementation
let
nssModulesPath = config.system.nssModules.path;
in
{
services = {
extraJobs = [{
name = "nscd";
users = [
@ -10,7 +18,7 @@
}
];
job = "
job = ''
description \"Name Service Cache Daemon\"
start on startup
@ -29,7 +37,8 @@ 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
";
respawn ${pkgs.glibc}/sbin/nscd -f ${./nscd.conf} -d 2> /dev/null
'';
}];
};
}