From 5b5aefa0302c159d2b53ac9ef4879b5d7843d91a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 15 Mar 2010 13:41:21 +0000 Subject: [PATCH] * Remove some obsolete stuff. svn path=/nixos/trunk/; revision=20631 --- modules/system/upstart/upstart.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/modules/system/upstart/upstart.nix b/modules/system/upstart/upstart.nix index 3fd9e2a5a221..74095d093ca8 100644 --- a/modules/system/upstart/upstart.nix +++ b/modules/system/upstart/upstart.nix @@ -265,6 +265,7 @@ let upstartJob = {name, config, ...}: { + options = { jobDrv = mkOption { default = makeJob config; @@ -282,6 +283,7 @@ let replaceChars ["<" ">" "*"] ["_" "_" "_name_"] name ); }; + }; in @@ -331,15 +333,6 @@ in # do status queries. services.dbus.packages = [ upstart ]; - # !!! fix this - /* - tests.upstartJobs = { recurseForDerivations = true; } // - builtins.listToAttrs (map (job: { - name = removePrefix "upstart-" job.name; - value = job; - }) jobs); - */ - }; }