From 5c73886faf0af4d86598278e0c01dd1b9043d604 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 26 May 2026 13:46:39 -0700 Subject: [PATCH] Fix label name Signed-off-by: Bryan Frimin --- cmd/probo-agent/installer/macos/Resources/welcome.html | 2 +- pkg/deviceagent/service/service.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/probo-agent/installer/macos/Resources/welcome.html b/cmd/probo-agent/installer/macos/Resources/welcome.html index 36c45d7dd..c0448917b 100644 --- a/cmd/probo-agent/installer/macos/Resources/welcome.html +++ b/cmd/probo-agent/installer/macos/Resources/welcome.html @@ -38,7 +38,7 @@
  • Installs the probo-agent binary to /usr/local/bin/probo-agent.
  • Registers the launchd unit - com.getprobo.agent in + com.probo.agent in /Library/LaunchDaemons.
  • Creates the persistent state directory /var/lib/probo-agent (root-owned, mode 0700).
  • diff --git a/pkg/deviceagent/service/service.go b/pkg/deviceagent/service/service.go index cfd699588..6bf8f8bb2 100644 --- a/pkg/deviceagent/service/service.go +++ b/pkg/deviceagent/service/service.go @@ -27,7 +27,7 @@ type Config struct { // Default service identifiers by platform. const ( - DefaultLabel = "com.getprobo.agent" + DefaultLabel = "com.probo.agent" DefaultUnixName = "probo-agent" DefaultWindowsName = "ProboAgent" )