summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2015-10-14 10:49:52 +0200
committerPascal Wittmann <PascalWittmann@gmx.net>2015-10-14 10:49:52 +0200
commit78b2851724de10a2d6f9eae1301f14a449f29e6f (patch)
tree9f4435fb7e5b10e0cb4ea485de818b6f50ab89c8 /nixos
parent0eb45e0ff98fe269bc8d1b3924c471e54f582c4f (diff)
parent528ebb4e5e0d9c42eea8d9b07655dff9c6966b1d (diff)
downloadnixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar.gz
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar.bz2
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar.lz
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar.xz
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.tar.zst
nixlib-78b2851724de10a2d6f9eae1301f14a449f29e6f.zip
Merge pull request #10384 from robbinch/fix-statd
Fix typo in nixos/modules/tasks/filesystems/nfs.nix.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems/nfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix
index 79de6556f251..e454eca3a0e5 100644
--- a/nixos/modules/tasks/filesystems/nfs.nix
+++ b/nixos/modules/tasks/filesystems/nfs.nix
@@ -90,7 +90,7 @@ in
         serviceConfig.Type = "forking";
         serviceConfig.ExecStart = ''
           @${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";
       };