From 9245f37fb9533123ce4da09d896c1ff46f028a2b Mon Sep 17 00:00:00 2001 From: Lasse Goette Date: Thu, 17 Oct 2024 17:30:58 +0200 Subject: [PATCH] set interval of oracle service to 10m --- modules/oracle-cloud-instance-launcher/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/oracle-cloud-instance-launcher/default.nix b/modules/oracle-cloud-instance-launcher/default.nix index 8a18bf2..64698b6 100644 --- a/modules/oracle-cloud-instance-launcher/default.nix +++ b/modules/oracle-cloud-instance-launcher/default.nix @@ -12,8 +12,8 @@ in { systemd.timers."oracle-cloud-instance-launcher" = { wantedBy = [ "timers.target" ]; timerConfig = { - OnBootSec = "20m"; - OnUnitActiveSec = "20m"; + OnBootSec = "10m"; + OnUnitActiveSec = "10m"; Unit = "oracle-cloud-instance-launcher.service"; }; };