From efa2dccf44d9d0e58fafe34acb6723fbde16cf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 3 Jan 2011 18:36:31 +0000 Subject: [PATCH] Fixing the systab in fcron. svn path=/nixos/trunk/; revision=25368 --- modules/services/scheduling/fcron.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/scheduling/fcron.nix b/modules/services/scheduling/fcron.nix index 5bff33b3e274..632e57826d85 100644 --- a/modules/services/scheduling/fcron.nix +++ b/modules/services/scheduling/fcron.nix @@ -8,7 +8,7 @@ let queuelen = if cfg.queuelen == "" then "" else "-q ${toString cfg.queuelen}"; - systemCronJobsFile = pkgs.writeText "system-crontab" + systemCronJobs = '' SHELL=${pkgs.bash}/bin/bash PATH=${config.system.path}/bin:${config.system.path}/sbin @@ -61,7 +61,7 @@ in }; systab = mkOption { - default = systemCronJobsFile; + default = systemCronJobs; description = ''The "system" crontab contents.''; }; };