nixpkgs/modules/services/logging/logrotate.nix
Lluís Batlle i Rossell b47c2186f6 Adding logrotate to nixos. Not a very clever logrotate, though:
options 'enable' (cronjob every hour) and the config flie contents passed
as a string.


svn path=/nixos/trunk/; revision=21438
2010-04-29 18:54:08 +00:00

39 lines
652 B
Nix

{config, pkgs, ...}:
with pkgs.lib;
let
cfg = config.services.logrotate;
configFile = pkgs.writeText "logrotate.conf"
cfg.config;
cronJob = ''
5 * * * * ${pkgs.logrotate}/sbin/logrotate ${configFile}
'';
in
{
options = {
services.logrotate = {
enable = mkOption {
default = false;
description = ''
Enable the logrotate cron job
'';
};
config = mkOption {
default = "";
description = ''
The contents of the logrotate config file
'';
};
};
};
config = mkIf cfg.enable {
services.cron.systemCronJobs = [ cronJob ];
};
}