Fix label name

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-05-26 13:46:39 -07:00
parent 7a3d3db7ac
commit 5c73886faf
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@
<li>Installs the <code>probo-agent</code> binary to
<code>/usr/local/bin/probo-agent</code>.</li>
<li>Registers the launchd unit
<code>com.getprobo.agent</code> in
<code>com.probo.agent</code> in
<code>/Library/LaunchDaemons</code>.</li>
<li>Creates the persistent state directory
<code>/var/lib/probo-agent</code> (root-owned, mode 0700).</li>

View File

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