mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 22:19:17 +03:00
* job.extraHttpdConfig: not used anywhere.
svn path=/nixos/branches/modular-nixos/; revision=16369
This commit is contained in:
parent
118418ba31
commit
def0be732f
2 changed files with 0 additions and 5 deletions
|
@ -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 [];
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue