2009-01-25 16:22:17 +01:00
|
|
|
{pkgs, config, ...}:
|
2007-01-10 18:09:00 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
###### interface
|
2008-02-01 13:01:27 +01:00
|
|
|
let
|
2008-11-09 17:44:43 +01:00
|
|
|
inherit (pkgs.lib) mkOption;
|
2008-02-01 13:01:27 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
options = {
|
|
|
|
services = {
|
|
|
|
cron = {
|
|
|
|
|
|
|
|
mailto = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = " The job output will be mailed to this email address. ";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemCronJobs = mkOption {
|
|
|
|
default = [];
|
|
|
|
example = [
|
|
|
|
"* * * * * test ls -l / > /tmp/cronout 2>&1"
|
|
|
|
"* * * * * eelco echo Hello World > /home/eelco/cronout"
|
|
|
|
];
|
|
|
|
description = ''
|
|
|
|
A list of Cron jobs to be appended to the system-wide
|
|
|
|
crontab. See the manual page for crontab for the expected
|
|
|
|
format. If you want to get the results mailed you must setuid
|
|
|
|
sendmail. See <option>security.setuidOwners</option>
|
2009-04-03 14:05:15 +02:00
|
|
|
|
|
|
|
If you neither create /etc/cron.deny nor /etc/cron.allow only root
|
|
|
|
will be allowed to have its own crontab file.
|
2008-11-09 17:44:43 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
let
|
2008-02-01 13:35:51 +01:00
|
|
|
# Put all the system cronjobs together.
|
|
|
|
systemCronJobs =
|
2008-11-09 17:44:53 +01:00
|
|
|
config.services.cron.systemCronJobs;
|
2008-02-01 13:01:27 +01:00
|
|
|
|
|
|
|
systemCronJobsFile = pkgs.writeText "system-crontab" ''
|
|
|
|
SHELL=${pkgs.bash}/bin/sh
|
2008-02-01 13:35:51 +01:00
|
|
|
PATH=${pkgs.coreutils}/bin:${pkgs.findutils}/bin:${pkgs.gnused}/bin:${pkgs.su}/bin
|
2008-10-26 00:03:12 +02:00
|
|
|
MAILTO="${config.services.cron.mailto}"
|
2008-02-01 13:01:27 +01:00
|
|
|
${pkgs.lib.concatStrings (map (job: job + "\n") systemCronJobs)}
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
2008-11-09 17:44:43 +01:00
|
|
|
|
2007-01-10 18:09:00 +01:00
|
|
|
{
|
2008-11-09 17:44:43 +01:00
|
|
|
require = [
|
|
|
|
# (import ../upstart-jobs/default.nix) # config.services.extraJobs
|
|
|
|
# (import ?) # config.time.timeZone
|
|
|
|
# (import ?) # config.environment.etc
|
|
|
|
# (import ?) # config.environment.extraPackages
|
|
|
|
# (import ?) # config.environment.cleanStart
|
|
|
|
options
|
2008-02-01 13:01:27 +01:00
|
|
|
];
|
2007-01-10 18:09:00 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
environment = {
|
|
|
|
etc = [
|
|
|
|
# The system-wide crontab.
|
|
|
|
{ source = systemCronJobsFile;
|
|
|
|
target = "crontab";
|
|
|
|
mode = "0600"; # Cron requires this.
|
|
|
|
}
|
|
|
|
];
|
2007-01-10 18:09:00 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
extraPackages =
|
|
|
|
pkgs.lib.optional
|
|
|
|
(!config.environment.cleanStart)
|
|
|
|
pkgs.cron;
|
|
|
|
};
|
2008-02-01 13:01:27 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
services = {
|
|
|
|
extraJobs = [{
|
|
|
|
name = "cron";
|
2008-02-01 14:56:36 +01:00
|
|
|
|
2008-11-09 17:44:43 +01:00
|
|
|
job = ''
|
|
|
|
description "Cron daemon"
|
|
|
|
|
|
|
|
start on startup
|
|
|
|
stop on shutdown
|
|
|
|
|
|
|
|
# Needed to interpret times in the local timezone.
|
|
|
|
env TZ=${config.time.timeZone}
|
|
|
|
|
|
|
|
respawn ${pkgs.cron}/sbin/cron -n
|
|
|
|
'';
|
|
|
|
}];
|
|
|
|
};
|
2007-01-10 18:09:00 +01:00
|
|
|
}
|