3
0
Fork 0
forked from mirrors/nixpkgs

* Daemonise mountd/statd.

svn path=/nixos/branches/boot-order/; revision=22198
This commit is contained in:
Eelco Dolstra 2010-06-09 13:45:51 +00:00
parent 6e27ce8e8e
commit 94088e9b48

View file

@ -149,7 +149,9 @@ in
startOn = "starting nfs-kernel-nfsd and started portmap";
stopOn = "stopped nfs-kernel-nfsd";
exec = "${pkgs.nfsUtils}/sbin/rpc.mountd -F -f /etc/exports";
daemonType = "fork";
exec = "${pkgs.nfsUtils}/sbin/rpc.mountd -f /etc/exports";
};
}
@ -169,7 +171,9 @@ in
mkdir -p /var/lib/nfs/sm.bak
'';
exec = "${pkgs.nfsUtils}/sbin/rpc.statd --foreground --no-notify";
daemonType = "fork";
exec = "${pkgs.nfsUtils}/sbin/rpc.statd --no-notify";
};
}