From b4e285c00c78e9806de8f4c264635e104ffb0398 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 3 Dec 2023 16:12:32 +0100 Subject: [PATCH] fix sysbox services --- hosts/fw.cloonar.com/modules/sysbox.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hosts/fw.cloonar.com/modules/sysbox.nix b/hosts/fw.cloonar.com/modules/sysbox.nix index f835d65..cda2f69 100644 --- a/hosts/fw.cloonar.com/modules/sysbox.nix +++ b/hosts/fw.cloonar.com/modules/sysbox.nix @@ -21,8 +21,7 @@ after = "sysbox-mgr.service"; wantedBy = [ "multi-user.target" ]; serviceConfig = { - Type = "simple"; - Type = "notify"; + Type = [ "simple" "notify" ]; ExecStart = "${pkgs.sysbox}/bin/sysbox-fs"; TimeoutStartSec = 10; TimeoutStopSec = 10; @@ -42,8 +41,7 @@ partOf = "sysbox.service"; wantedBy = [ "multi-user.target" ]; serviceConfig = { - Type = "simple"; - Type = "notify"; + Type = [ "simple" "notify" ]; ExecStart = "${pkgs.sysbox}/bin/sysbox-mgr"; TimeoutStartSec = 45; TimeoutStopSec = 90;