1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Removing unused lines of the nfs-kernel script, and fixing some indentation.

svn path=/nixos/trunk/; revision=31120
This commit is contained in:
Lluís Batlle i Rossell 2011-12-28 09:05:52 +00:00
parent 99cca93398
commit 5cf6543e6e

View file

@ -112,14 +112,6 @@ in
target = "exports";
});
/* We have to load this quite before running the daemons. Using
"modprobe nfsd" when loading the daemons causes a race condition where
nfsd can return 'authentication failed'/'Permission denied'.
I've not tried with nfsd alone. So I add what I tried, with nfs_acl too.
*/
# boot.kernelModules = mkIf cfg.server.enable [ "nfsd" "nfs_acl" ];
jobs =
optionalAttrs cfg.server.enable
{ nfs_kernel_exports =
@ -202,7 +194,7 @@ in
description = "Kernel NFS server - Network Status Monitor";
startOn = if (cfg.server.enable) then
"started nfs-kernel-mountd and started nfs-kernel-nfsd"
"started nfs-kernel-mountd and started nfs-kernel-nfsd"
else
"started portmap";
stopOn = "stopping nfs-kernel-exports or stopping portmap";