Author: eelco Date: Thu Mar 22 13:01:06 2012 New Revision: 33358 URL: https://nixos.org/websvn/nix/?rev=33358&sc=1
Log: * The idmapd job requires the sunrpc kernel module to be loaded. (http://hydra.nixos.org/build/2315397) Modified: nixos/trunk/modules/tasks/filesystems/nfs.nix Modified: nixos/trunk/modules/tasks/filesystems/nfs.nix ============================================================================== --- nixos/trunk/modules/tasks/filesystems/nfs.nix Thu Mar 22 12:58:45 2012 (r33357) +++ nixos/trunk/modules/tasks/filesystems/nfs.nix Thu Mar 22 13:01:06 2012 (r33358) @@ -39,6 +39,8 @@ system.fsPackages = [ pkgs.nfsUtils ]; + boot.kernelModules = [ "sunrpc" ]; + boot.initrd.kernelModules = mkIf inInitrd [ "nfs" ]; boot.initrd.extraUtilsCommands = mkIf inInitrd @@ -77,11 +79,11 @@ }; jobs.idmapd = - { description = "Kernel NFS server - ID Map Daemon"; + { description = "NFS ID mapping daemon"; path = [ pkgs.nfsUtils pkgs.sysvtools pkgs.utillinux ]; - stopOn = "starting shutdown"; + startOn = "started udev"; preStart = '' _______________________________________________ nix-commits mailing list [email protected] http://lists.science.uu.nl/mailman/listinfo/nix-commits
