From def0be732fb434dbb51cd5f1127da975bb882c28 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 15 Jul 2009 09:14:24 +0000 Subject: [PATCH] * job.extraHttpdConfig: not used anywhere. svn path=/nixos/branches/modular-nixos/; revision=16369 --- modules/system/upstart/make-job.nix | 4 ---- modules/system/upstart/upstart.nix | 1 - 2 files changed, 5 deletions(-) diff --git a/modules/system/upstart/make-job.nix b/modules/system/upstart/make-job.nix index 26cce3af2a96..319e58a0a5cd 100644 --- a/modules/system/upstart/make-job.nix +++ b/modules/system/upstart/make-job.nix @@ -21,10 +21,6 @@ # system path. 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. users = if job ? users then job.users else []; diff --git a/modules/system/upstart/upstart.nix b/modules/system/upstart/upstart.nix index 699fcc4c2f4f..e190c23523f5 100644 --- a/modules/system/upstart/upstart.nix +++ b/modules/system/upstart/upstart.nix @@ -81,7 +81,6 @@ in environment.extraPackages = pkgs.lib.concatLists (map (job: job.extraPath) jobs); - users.extraUsers = pkgs.lib.concatLists (map (job: job.users) jobs);