841318c9e2
- add remote client register, heartbeat and list endpoints - add remote client repository and service - add minimal macOS remote agent with config, register and heartbeat loop - keep client_id as leading identity - keep status fields separated: last_seen, status, last_error, reachable_at - avoid changes to local storage flows, PathGuard and /Volumes behavior
25 lines
888 B
Plaintext
25 lines
888 B
Plaintext
<?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>com.webmanager.remote-client-agent</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/usr/bin/python3</string>
|
|
<string>-u</string>
|
|
<string>/workspace/webmanager-mvp/finder_commander/remote_client_agent.py</string>
|
|
<string>--config</string>
|
|
<string>/workspace/webmanager-mvp/finder_commander/remote_client_agent.launchd.json</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>StandardOutPath</key>
|
|
<string>/tmp/com.webmanager.remote-client-agent.out.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>/tmp/com.webmanager.remote-client-agent.err.log</string>
|
|
</dict>
|
|
</plist>
|