2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-03-06 13:26:22 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
uid = config.ids.uids.portmap;
|
|
|
|
gid = config.ids.gids.portmap;
|
2009-02-24 20:17:25 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
portmap = pkgs.portmap.override { daemonUID = uid; daemonGID = gid; };
|
|
|
|
|
|
|
|
in
|
2009-02-24 21:41:58 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
{
|
2009-02-24 21:41:58 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.portmap = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable `portmap', an ONC RPC directory service
|
|
|
|
notably used by NFS and NIS, and which can be queried
|
|
|
|
using the rpcinfo(1) command.
|
|
|
|
'';
|
2009-03-06 13:26:22 +01:00
|
|
|
};
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
verbose = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable verbose output.
|
|
|
|
'';
|
|
|
|
};
|
2008-03-16 00:40:44 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
chroot = mkOption {
|
|
|
|
default = "/var/empty";
|
|
|
|
description = ''
|
|
|
|
If non-empty, a path to change root to.
|
|
|
|
'';
|
|
|
|
};
|
2008-03-16 00:40:44 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:22 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
|
2008-03-16 00:40:44 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
###### implementation
|
2008-03-16 00:40:44 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
config = mkIf config.services.portmap.enable {
|
|
|
|
|
|
|
|
users.extraUsers = singleton
|
2009-03-06 13:26:22 +01:00
|
|
|
{ name = "portmap";
|
|
|
|
inherit uid;
|
|
|
|
description = "portmap daemon user";
|
|
|
|
home = "/var/empty";
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:22 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
users.extraGroups = singleton
|
2009-03-06 13:26:22 +01:00
|
|
|
{ name = "portmap";
|
|
|
|
inherit gid;
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2009-03-06 13:26:22 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
jobAttrs.portmap =
|
|
|
|
{ description = "ONC RPC portmap";
|
2009-03-06 13:26:22 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
startOn = "network-interfaces/started";
|
|
|
|
stopOn = "network-interfaces/stop";
|
2009-03-06 13:26:22 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
exec =
|
|
|
|
''
|
|
|
|
${portmap}/sbin/portmap -f \
|
|
|
|
${if config.services.portmap.chroot == ""
|
|
|
|
then ""
|
|
|
|
else "-t \"${config.services.portmap.chroot}\""} \
|
|
|
|
${if config.services.portmap.verbose then "-v" else ""}
|
|
|
|
'';
|
|
|
|
};
|
2008-03-16 00:40:44 +01:00
|
|
|
|
2009-03-06 13:26:22 +01:00
|
|
|
};
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2008-03-16 00:40:44 +01:00
|
|
|
}
|