Browser enrollment used osascript on every elevate. Ship a signed privileged helper installed at PKG time so probo:// can enroll over XPC with no second admin prompt. Add make install/uninstall/clean for local PKG test loops, and show alerts only on failure. Mirror the Go lint path for the macOS SPM package: Make targets, root configs, and a Linux CI job. Keep checks syntax-only so they do not need a macOS SDK. Format the existing sources so the new gates start clean. Signed-off-by: Ludovic Vielle <ludovic@probo.com>
52 lines
1.5 KiB
XML
52 lines
1.5 KiB
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">
|
|
<!--
|
|
Info.plist for the Probo Agent URL handler app bundle.
|
|
|
|
Placeholders are substituted by build-app.sh:
|
|
|
|
@@VERSION@@ agent version, e.g. 0.1.0
|
|
@@HELPER_DESIGNATED_REQUIREMENT@@ codesign requirement for embedded helper
|
|
-->
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>probo-agent-url-handler</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.probo.agent.url-handler</string>
|
|
<key>CFBundleName</key>
|
|
<string>Probo Agent</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Probo Agent</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@@VERSION@@</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@@VERSION@@</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>11.0</string>
|
|
<key>LSUIElement</key>
|
|
<true/>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>Probo Enrollment</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>probo</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>SMPrivilegedExecutables</key>
|
|
<dict>
|
|
<key>com.probo.agent.helper</key>
|
|
<string>@@HELPER_DESIGNATED_REQUIREMENT@@</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|