From ebfc7b35759d9ebcb669c2da077a7fb126568bcb Mon Sep 17 00:00:00 2001 From: Mauro Morales Date: Tue, 14 Jan 2025 12:46:38 +0100 Subject: [PATCH] Remove shutdown now, it will be addressed later see kairos-io/kairos#3126 Signed-off-by: Mauro Morales --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index ba8c725..7140c69 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -271,7 +271,7 @@ func PowerOFF() { if IsOpenRCBased() { SH("poweroff") //nolint:errcheck } else { - SH("shutdown now") //nolint:errcheck + SH("shutdown") //nolint:errcheck } }