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
This commit is contained in:
courtmanr@gmail.com 2025-11-24 07:57:17 +00:00
parent 60721cbc22
commit 08a83c9adb
2 changed files with 2 additions and 1 deletions

View file

@ -1 +1 @@
4.32.5
4.32.6

View file

@ -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)