31f2d8ffbc
svn path=/nixos/trunk/; revision=19700
18 lines
307 B
Nix
18 lines
307 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
machine =
|
|
{ config, pkgs, ... }:
|
|
|
|
{ services.portmap.enable = true; };
|
|
|
|
testScript =
|
|
''
|
|
# The `portmap' service must be registered once for TCP and once for
|
|
# UDP.
|
|
$machine->mustSucceed("test `rpcinfo -p | grep portmapper | wc -l` -eq 2");
|
|
'';
|
|
|
|
}
|