nfs-utils: align attrname with pkgname

nfsUtils => nfs-utils. Keep copy of old attribute for backward
compatibility.

Changed files
+12 -11
nixos
modules
services
misc
network-filesystems
tasks
filesystems
pkgs
+1 -1
nixos/modules/services/misc/autofs.nix
···
startOn = "started network-interfaces";
stopOn = "stopping network-interfaces";
-
path = [ pkgs.nfsUtils pkgs.sshfsFuse ];
+
path = [ pkgs.nfs-utils pkgs.sshfsFuse ];
preStop =
''
+4 -4
nixos/modules/services/network-filesystems/nfsd.nix
···
boot.supportedFilesystems = [ "nfs" ]; # needed for statd and idmapd
-
environment.systemPackages = [ pkgs.nfsUtils ];
+
environment.systemPackages = [ pkgs.nfs-utils ];
environment.etc = singleton
{ source = exports;
···
after = [ "rpcbind.service" "mountd.service" "idmapd.service" ];
before = [ "statd.service" ];
-
path = [ pkgs.nfsUtils ];
+
path = [ pkgs.nfs-utils ];
script =
''
···
requires = [ "rpcbind.service" ];
after = [ "rpcbind.service" ];
-
path = [ pkgs.nfsUtils pkgs.sysvtools pkgs.utillinux ];
+
path = [ pkgs.nfs-utils pkgs.sysvtools pkgs.utillinux ];
preStart =
''
···
serviceConfig.Type = "forking";
serviceConfig.ExecStart = ''
-
@${pkgs.nfsUtils}/sbin/rpc.mountd rpc.mountd \
+
@${pkgs.nfs-utils}/sbin/rpc.mountd rpc.mountd \
${if cfg.mountdPort != null then "-p ${toString cfg.mountdPort}" else ""}
'';
serviceConfig.Restart = "always";
+4 -4
nixos/modules/tasks/filesystems/nfs.nix
···
services.rpcbind.enable = true;
-
system.fsPackages = [ pkgs.nfsUtils ];
+
system.fsPackages = [ pkgs.nfs-utils ];
boot.extraModprobeConfig = mkIf (cfg.lockdPort != null) ''
options lockd nlm_udpport=${toString cfg.lockdPort} nlm_tcpport=${toString cfg.lockdPort}
···
systemd.services.statd =
{ description = "NFSv3 Network Status Monitor";
-
path = [ pkgs.nfsUtils pkgs.sysvtools pkgs.utillinux ];
+
path = [ pkgs.nfs-utils pkgs.sysvtools pkgs.utillinux ];
wantedBy = [ "remote-fs-pre.target" ];
before = [ "remote-fs-pre.target" ];
···
serviceConfig.Type = "forking";
serviceConfig.ExecStart = ''
-
@${pkgs.nfsUtils}/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 ""}
'';
serviceConfig.Restart = "always";
···
'';
serviceConfig.Type = "forking";
-
serviceConfig.ExecStart = "@${pkgs.nfsUtils}/sbin/rpc.idmapd rpc.idmapd -c ${idmapdConfFile}";
+
serviceConfig.ExecStart = "@${pkgs.nfs-utils}/sbin/rpc.idmapd rpc.idmapd -c ${idmapdConfFile}";
serviceConfig.Restart = "always";
};
+2 -1
pkgs/top-level/all-packages.nix
···
_915resolution = callPackage ../os-specific/linux/915resolution { };
-
nfsUtils = callPackage ../os-specific/linux/nfs-utils { };
+
nfs-utils = callPackage ../os-specific/linux/nfs-utils { };
acpi = callPackage ../os-specific/linux/acpi { };
···
rdiff_backup = rdiff-backup; # added 2014-11-23
htmlTidy = html-tidy; # added 2014-12-06
sqliteInteractive = sqlite-interactive; # added 2014-12-06
+
nfsUtils = nfs-utils; # added 2014-12-06
opentsdb = callPackage ../tools/misc/opentsdb {};
+1 -1
pkgs/top-level/release-small.nix
···
mysql51 = linux;
ncat = linux;
netcat = all;
-
nfsUtils = linux;
+
nfs-utils = linux;
nix = all;
nixUnstable = all;
nss_ldap = linux;