File: disable-kms.patch

package info (click to toggle)
cosign 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,960 kB
  • sloc: sh: 222; makefile: 170
file content (23 lines) | stat: -rw-r--r-- 786 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Simon Josefsson <simon@josefsson.org>
Subject: [PATCH] Disable kms
Origin: vendor
Forwarded: not-needed
Last-Update: 2025-01-20

diff --git a/cmd/cosign/main.go b/cmd/cosign/main.go
index 50edaefc..9c67d598 100644
--- a/cmd/cosign/main.go
+++ b/cmd/cosign/main.go
@@ -28,9 +28,9 @@ import (
 
 	// Register the provider-specific plugins
 	_ "github.com/sigstore/sigstore/pkg/signature/kms/aws"
-	_ "github.com/sigstore/sigstore/pkg/signature/kms/azure"
-	_ "github.com/sigstore/sigstore/pkg/signature/kms/gcp"
-	_ "github.com/sigstore/sigstore/pkg/signature/kms/hashivault"
+//	_ "github.com/sigstore/sigstore/pkg/signature/kms/azure"
+//	_ "github.com/sigstore/sigstore/pkg/signature/kms/gcp"
+//	_ "github.com/sigstore/sigstore/pkg/signature/kms/hashivault"
 )
 
 func main() {