task(spn): Update SPN binary index url

This commit is contained in:
Natanael Rodriguez Ramos
2025-04-11 12:38:34 +01:00
parent 7d33aaff89
commit ecce583296
2 changed files with 4 additions and 1 deletions

View File

@@ -93,7 +93,7 @@ func initializeGlobals(cmd *cobra.Command, args []string) {
LogDir: logDir,
LogLevel: logLevel,
BinariesIndexURLs: configure.DefaultStableBinaryIndexURLs,
BinariesIndexURLs: configure.DefaultSpnStableBinaryIndexURLs,
IntelIndexURLs: configure.DefaultIntelIndexURLs,
VerifyBinaryUpdates: configure.BinarySigningTrustStore,
}

View File

@@ -11,6 +11,9 @@ var (
DefaultStableBinaryIndexURLs = []string{
"https://updates.safing.io/stable.v3.json",
}
DefaultSpnStableBinaryIndexURLs = []string{
"https://updates.safing.io/stable.v3.json",
}
DefaultBetaBinaryIndexURLs = []string{
"https://updates.safing.io/beta.v3.json",
}