From 08a83c9adbfa231d251781fe4b3cc7a791aa57ed Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Mon, 24 Nov 2025 07:57:17 +0000 Subject: [PATCH] Add host agent checksum route and bump version to 4.32.6 - Add /download/pulse-host-agent.sha256 route to serve checksums - Fixes 'Checksum not available' warning during host agent installation - Bump version to 4.32.6 Related to #746 --- VERSION | 2 +- internal/api/router.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 13d83d1..ade0a15 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.32.5 +4.32.6 diff --git a/internal/api/router.go b/internal/api/router.go index 481a193..6653b97 100644 --- a/internal/api/router.go +++ b/internal/api/router.go @@ -1001,6 +1001,7 @@ func (r *Router) setupRoutes() { r.mux.HandleFunc("/uninstall-host-agent.sh", r.handleDownloadHostAgentUninstallScript) r.mux.HandleFunc("/uninstall-host-agent.ps1", r.handleDownloadHostAgentUninstallScriptPS) r.mux.HandleFunc("/download/pulse-host-agent", r.handleDownloadHostAgent) + r.mux.HandleFunc("/download/pulse-host-agent.sha256", r.handleDownloadHostAgent) r.mux.HandleFunc("/api/agent/version", r.handleAgentVersion) r.mux.HandleFunc("/api/server/info", r.handleServerInfo)