0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Merge pull request #10384 from robbinch/fix-statd

Fix typo in nixos/modules/tasks/filesystems/nfs.nix.
This commit is contained in:
Pascal Wittmann 2015-10-14 10:49:52 +02:00
commit 78b2851724

View file

@ -90,7 +90,7 @@ in
serviceConfig.Type = "forking"; serviceConfig.Type = "forking";
serviceConfig.ExecStart = '' serviceConfig.ExecStart = ''
@${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \
${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""}
''; '';
serviceConfig.Restart = "always"; serviceConfig.Restart = "always";
}; };