* job.extraHttpdConfig: not used anywhere.

svn path=/nixos/branches/modular-nixos/; revision=16369
This commit is contained in:
Eelco Dolstra 2009-07-15 09:14:24 +00:00
parent 118418ba31
commit def0be732f
2 changed files with 0 additions and 5 deletions

View File

@ -21,10 +21,6 @@
# system path. # system path.
extraPath = if job ? extraPath then job.extraPath else []; extraPath = if job ? extraPath then job.extraPath else [];
# Allow jobs to declare extra configuration for Apache (e.g. Nagios
# declaring its web interface).
extraHttpdConfig = if job ? extraHttpdConfig then job.extraHttpdConfig else "";
# Allow jobs to declare user accounts that should be created. # Allow jobs to declare user accounts that should be created.
users = if job ? users then job.users else []; users = if job ? users then job.users else [];

View File

@ -81,7 +81,6 @@ in
environment.extraPackages = environment.extraPackages =
pkgs.lib.concatLists (map (job: job.extraPath) jobs); pkgs.lib.concatLists (map (job: job.extraPath) jobs);
users.extraUsers = users.extraUsers =
pkgs.lib.concatLists (map (job: job.users) jobs); pkgs.lib.concatLists (map (job: job.users) jobs);