From 0829a9977d92f60c2379e1d3ec68b8505d9f4f94 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 5 Jan 2011 10:42:39 +0000 Subject: [PATCH] * Fix the infinite recursion in fcron while evaluating the manual. svn path=/nixos/trunk/; revision=25418 --- modules/services/scheduling/fcron.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/services/scheduling/fcron.nix b/modules/services/scheduling/fcron.nix index 632e57826d8..4521b3c5760 100644 --- a/modules/services/scheduling/fcron.nix +++ b/modules/services/scheduling/fcron.nix @@ -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)