Changing portmap by rpcbind on nfs services.
That could make rpc.statd work. Patch by Rickard Nilsson. I'm not sure we need that netconfig file in etc. svn path=/nixos/trunk/; revision=33342
This commit is contained in:
parent
a4a355f764
commit
5ddae4a83a
@ -141,6 +141,7 @@
|
|||||||
./services/networking/quassel.nix
|
./services/networking/quassel.nix
|
||||||
./services/networking/radvd.nix
|
./services/networking/radvd.nix
|
||||||
./services/networking/rdnssd.nix
|
./services/networking/rdnssd.nix
|
||||||
|
./services/networking/rpcbind.nix
|
||||||
./services/networking/sabnzbd.nix
|
./services/networking/sabnzbd.nix
|
||||||
./services/networking/ssh/lshd.nix
|
./services/networking/ssh/lshd.nix
|
||||||
./services/networking/ssh/sshd.nix
|
./services/networking/ssh/sshd.nix
|
||||||
|
@ -67,7 +67,7 @@ in
|
|||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
services.portmap.enable = true;
|
services.rpcbind.enable = true;
|
||||||
|
|
||||||
services.nfs.client.enable = true; # needed for statd and idmapd
|
services.nfs.client.enable = true; # needed for statd and idmapd
|
||||||
|
|
||||||
@ -89,7 +89,7 @@ in
|
|||||||
|
|
||||||
preStart =
|
preStart =
|
||||||
''
|
''
|
||||||
ensure portmap
|
ensure rpcbind
|
||||||
ensure mountd
|
ensure mountd
|
||||||
|
|
||||||
# Create a state directory required by NFSv4.
|
# Create a state directory required by NFSv4.
|
||||||
@ -116,7 +116,7 @@ in
|
|||||||
|
|
||||||
preStart =
|
preStart =
|
||||||
''
|
''
|
||||||
ensure portmap
|
ensure rpcbind
|
||||||
|
|
||||||
mkdir -p /var/lib/nfs
|
mkdir -p /var/lib/nfs
|
||||||
touch /var/lib/nfs/rmtab
|
touch /var/lib/nfs/rmtab
|
||||||
|
80
modules/services/networking/rpcbind.nix
Normal file
80
modules/services/networking/rpcbind.nix
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs.lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
netconfigFile = {
|
||||||
|
target = "netconfig";
|
||||||
|
source = pkgs.writeText "netconfig" ''
|
||||||
|
#
|
||||||
|
# The network configuration file. This file is currently only used in
|
||||||
|
# conjunction with the TI-RPC code in the libtirpc library.
|
||||||
|
#
|
||||||
|
# Entries consist of:
|
||||||
|
#
|
||||||
|
# <network_id> <semantics> <flags> <protofamily> <protoname> \
|
||||||
|
# <device> <nametoaddr_libs>
|
||||||
|
#
|
||||||
|
# The <device> and <nametoaddr_libs> fields are always empty in this
|
||||||
|
# implementation.
|
||||||
|
#
|
||||||
|
udp tpi_clts v inet udp - -
|
||||||
|
tcp tpi_cots_ord v inet tcp - -
|
||||||
|
udp6 tpi_clts v inet6 udp - -
|
||||||
|
tcp6 tpi_cots_ord v inet6 tcp - -
|
||||||
|
rawip tpi_raw - inet - - -
|
||||||
|
local tpi_cots_ord - loopback - - -
|
||||||
|
unix tpi_cots_ord - loopback - - -
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
###### interface
|
||||||
|
|
||||||
|
options = {
|
||||||
|
|
||||||
|
services.rpcbind = {
|
||||||
|
|
||||||
|
enable = mkOption {
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whether to enable `rpcbind', an ONC RPC directory service
|
||||||
|
notably used by NFS and NIS, and which can be queried
|
||||||
|
using the rpcinfo(1) command. `rpcbind` is a replacement for
|
||||||
|
`portmap`.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
###### implementation
|
||||||
|
|
||||||
|
config = mkIf config.services.rpcbind.enable {
|
||||||
|
|
||||||
|
environment.etc = [netconfigFile];
|
||||||
|
|
||||||
|
jobs.rpcbind =
|
||||||
|
{ description = "ONC RPC rpcbind";
|
||||||
|
|
||||||
|
startOn = "started network-interfaces";
|
||||||
|
stopOn = "";
|
||||||
|
|
||||||
|
daemonType = "fork";
|
||||||
|
|
||||||
|
exec =
|
||||||
|
''
|
||||||
|
${pkgs.rpcbind}/bin/rpcbind
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -49,7 +49,7 @@ in
|
|||||||
|
|
||||||
config = mkIf config.services.nfs.client.enable {
|
config = mkIf config.services.nfs.client.enable {
|
||||||
|
|
||||||
services.portmap.enable = true;
|
services.rpcbind.enable = true;
|
||||||
|
|
||||||
system.fsPackages = [ pkgs.nfsUtils ];
|
system.fsPackages = [ pkgs.nfsUtils ];
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ in
|
|||||||
|
|
||||||
preStart =
|
preStart =
|
||||||
''
|
''
|
||||||
ensure portmap
|
ensure rpcbind
|
||||||
mkdir -p ${nfsStateDir}/sm
|
mkdir -p ${nfsStateDir}/sm
|
||||||
mkdir -p ${nfsStateDir}/sm.bak
|
mkdir -p ${nfsStateDir}/sm.bak
|
||||||
sm-notify -d
|
sm-notify -d
|
||||||
@ -92,7 +92,7 @@ in
|
|||||||
|
|
||||||
preStart =
|
preStart =
|
||||||
''
|
''
|
||||||
ensure portmap
|
ensure rpcbind
|
||||||
mkdir -p ${rpcMountpoint}
|
mkdir -p ${rpcMountpoint}
|
||||||
mount -t rpc_pipefs rpc_pipefs ${rpcMountpoint}
|
mount -t rpc_pipefs rpc_pipefs ${rpcMountpoint}
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user