From 950182d87a9dfbfc5f0bf73ad01b13d88063028a Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Sun, 20 Aug 2023 18:32:34 +0800 Subject: [PATCH] d --- features/cm/software.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/cm/software.go b/features/cm/software.go index 2a015378..a1a3046c 100644 --- a/features/cm/software.go +++ b/features/cm/software.go @@ -130,7 +130,7 @@ func UploadSoftwareFile(w http.ResponseWriter, r *http.Request) { log.Debugf("cmsFilePath:%s rpmFilePath:%s publicKey:%s", rpmFilePath, cmsFilePath, config.GetYamlConfig().Auth.PublicKey) result := verify_signature(config.GetYamlConfig().Auth.PublicKey, cmsFilePath, rpmFilePath) log.Debug("result:", result.String()) - if result.String() != SoftwareVerifiedOk { + if strings.Contains(result.String(), SoftwareVerifiedOk) == true { err = global.ErrCMNotMatchSignFile log.Error(err) services.ResponseInternalServerError500ProcessError(w, err)