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