nixos/nextcloud: Adapt cron frequency to changed upstream requirement

https://docs.nextcloud.com/server/22/admin_manual/configuration_server/background_jobs_configuration.html

Says that the job should be run every 5 minutes.
Nextcloud shows a warning in the settings screen whenever the last run
was more than 10 minutes ago.
main
Malte Brandy 3 years ago
parent 0686c5c10b
commit 868157b9d6
No known key found for this signature in database
GPG Key ID: 226A2D41EF5378C9
  1. 2
      nixos/modules/services/web-apps/nextcloud.nix

@ -586,7 +586,7 @@ in {
{ systemd.timers.nextcloud-cron = {
wantedBy = [ "timers.target" ];
timerConfig.OnBootSec = "5m";
timerConfig.OnUnitActiveSec = "15m";
timerConfig.OnUnitActiveSec = "5m";
timerConfig.Unit = "nextcloud-cron.service";
};

Loading…
Cancel
Save