From 65a4991eee4554ee95da3dd51836ce0bc76f20a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 1 May 2010 13:23:32 +0000 Subject: [PATCH] I forgot the username in the system cron job for logrotate. So it did not work until now. svn path=/nixos/trunk/; revision=21479 --- modules/services/logging/logrotate.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/logging/logrotate.nix b/modules/services/logging/logrotate.nix index 59091cc2473..c6c0d2ea238 100644 --- a/modules/services/logging/logrotate.nix +++ b/modules/services/logging/logrotate.nix @@ -9,7 +9,7 @@ let cfg.config; cronJob = '' - 5 * * * * ${pkgs.logrotate}/sbin/logrotate ${configFile} + 5 * * * * root ${pkgs.logrotate}/sbin/logrotate ${configFile} ''; in