* Fix the infinite recursion in fcron while evaluating the manual.

svn path=/nixos/trunk/; revision=25418
This commit is contained in:
Eelco Dolstra 2011-01-05 10:42:39 +00:00
parent efa2dccf44
commit 0829a9977d

View File

@ -61,7 +61,7 @@ in
};
systab = mkOption {
default = systemCronJobs;
default = "";
description = ''The "system" crontab contents.'';
};
};
@ -73,6 +73,8 @@ in
config = mkIf cfg.enable {
services.fcron.systab = systemCronJobs;
environment.etc =
[ (allowdeny "allow" (cfg.allow))
(allowdeny "deny" cfg.deny)