Author: eelco
Date: Sat Mar 17 18:00:20 2012
New Revision: 33212
URL: https://nixos.org/websvn/nix/?rev=33212&sc=1

Log:
* Don't use the non-existent "never" condition in stopOn.

Modified:
   nixos/trunk/modules/services/networking/portmap.nix
   nixos/trunk/modules/tasks/filesystems/nfs.nix
   nixos/trunk/modules/testing/test-instrumentation.nix

Modified: nixos/trunk/modules/services/networking/portmap.nix
==============================================================================
--- nixos/trunk/modules/services/networking/portmap.nix Sat Mar 17 17:44:20 
2012        (r33211)
+++ nixos/trunk/modules/services/networking/portmap.nix Sat Mar 17 18:00:20 
2012        (r33212)
@@ -69,7 +69,7 @@
       { description = "ONC RPC portmap";
 
         startOn = "started network-interfaces";
-        stopOn = "never";
+        stopOn = "";
 
         daemonType = "fork"; # needed during shutdown
 

Modified: nixos/trunk/modules/tasks/filesystems/nfs.nix
==============================================================================
--- nixos/trunk/modules/tasks/filesystems/nfs.nix       Sat Mar 17 17:44:20 
2012        (r33211)
+++ nixos/trunk/modules/tasks/filesystems/nfs.nix       Sat Mar 17 18:00:20 
2012        (r33212)
@@ -45,7 +45,7 @@
 
         path = [ pkgs.nfsUtils pkgs.sysvtools pkgs.utillinux ];
 
-        stopOn = "never"; # needed during shutdown
+        stopOn = ""; # needed during shutdown
 
         preStart =
           ''

Modified: nixos/trunk/modules/testing/test-instrumentation.nix
==============================================================================
--- nixos/trunk/modules/testing/test-instrumentation.nix        Sat Mar 17 
17:44:20 2012        (r33211)
+++ nixos/trunk/modules/testing/test-instrumentation.nix        Sat Mar 17 
18:00:20 2012        (r33212)
@@ -29,7 +29,7 @@
 
     jobs.backdoor =
       { startOn = "startup";
-        stopOn = "never";
+        stopOn = "";
 
         script =
           ''
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to