* Pass userCreationDomain.

svn path=/nixos/trunk/; revision=7891
This commit is contained in:
Eelco Dolstra 2007-02-12 11:57:18 +00:00
parent 582abdaae2
commit ac93023f35
2 changed files with 12 additions and 0 deletions

View File

@ -537,6 +537,17 @@
} }
{
name = ["services" "httpd" "subservices" "subversion" "userCreationDomain"];
example = "example.org";
description = "
The domain from which user creation is allowed. A client can
only create a new user account if its IP address resolves to
this domain.
";
}
{ {
name = ["services" "httpd" "subservices" "subversion" "autoVersioning"]; name = ["services" "httpd" "subservices" "subversion" "autoVersioning"];
default = false; default = false;

View File

@ -48,6 +48,7 @@ let
notificationSender = getCfgSvn "notificationSender"; notificationSender = getCfgSvn "notificationSender";
autoVersioning = getCfgSvn "autoVersioning"; autoVersioning = getCfgSvn "autoVersioning";
userCreationDomain = getCfgSvn "userCreationDomain";
inherit pkgs; inherit pkgs;
}) })