* Udev jobs can now declare a passthru attribute which is

useful for testing the building of specific parts of
  a service, e.g. you can do
  
    $ nix-build /etc/nixos/nixos/ -A upstartJobs.udev.passthru.udevRules

  to build the udev rules directory of the udev service.

svn path=/nixos/trunk/; revision=12243
This commit is contained in:
Eelco Dolstra 2008-07-02 18:02:24 +00:00
parent 4d0645acb1
commit ed1029092b

View File

@ -33,4 +33,6 @@
# Allow jobs to declare groups that should be created.
groups = if job ? groups then job.groups else [];
passthru = if job ? passthru then job.passthru else {};
}