Unsigned darwin release tarballs replaced the Developer ID binary on each auto-update, so Background Task Management treated every release as a new identity and showed the generic executable icon. Sign those archives with a stable identifier, refuse signature downgrades, and attribute daemon/tray jobs to Probo Agent.app via AssociatedBundleIdentifiers. Signed-off-by: Ludovic Vielle <ludovic@probo.com>
33 lines
897 B
XML
33 lines
897 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
|
|
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>{{xml .Label}}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>{{xml .ExePath}}</string>
|
|
<string>run</string>
|
|
<string>--dir</string>
|
|
<string>{{xml .Dir}}</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>StandardOutPath</key>
|
|
<string>/var/log/probo-agent.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>/var/log/probo-agent.log</string>
|
|
<key>UserName</key>
|
|
<string>root</string>
|
|
<key>GroupName</key>
|
|
<string>wheel</string>
|
|
<key>AssociatedBundleIdentifiers</key>
|
|
<array>
|
|
<string>com.probo.agent.url-handler</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|