From 0323c5ab5ffe61d8ec9735ebef63799ab41f1513 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Wed, 8 Feb 2023 19:11:00 +0100 Subject: [PATCH] Fix recovery label Signed-off-by: Itxaka --- internal/utils/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/common.go b/internal/utils/common.go index d06cd03..b31f0a5 100644 --- a/internal/utils/common.go +++ b/internal/utils/common.go @@ -26,7 +26,7 @@ func BootStateToLabel() string { case "passive_boot": return "COS_PASSIVE" case "recovery_boot": - return "COS_RECOVERY" + return "COS_SYSTEM" default: return "" }