From 64dbc52e6de02f61df06f2e0b7f241aaa980fb3c Mon Sep 17 00:00:00 2001 From: Steve Malenfant Date: Wed, 8 Nov 2023 12:57:56 -0500 Subject: [PATCH] Removing check for chkconfig --- cache-config/t3c-apply/config/config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cache-config/t3c-apply/config/config.go b/cache-config/t3c-apply/config/config.go index e21f9279fd..7b4385efc9 100644 --- a/cache-config/t3c-apply/config/config.go +++ b/cache-config/t3c-apply/config/config.go @@ -681,8 +681,7 @@ func getOSSvcManagement() SvcManagement { _svcManager = SystemD } else if isCommandAvailable(Service) { _svcManager = SystemV - } - if !isCommandAvailable(Chkconfig) { + } else { return Unknown }