Estoy intentando crear un agente de inicio simple que ejecute una aplicación de prueba con la carga del sistema. Seguí la documentación oficial, pero no puedo hacer que funcione. mi archivo plist se encuentra en /Library/LaunchAgents/Test.launcher.mac.service.plist. a ls -l devuelve:
-rwx------@ 1 root wheel 578 Jan 21 08:46 /Library/LaunchAgents/Test.launcher.mac.service.plist.
el contenido de mi lista es:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/P$
<plist version="1.0">
<dict>
<key>Label</key>
<string>Test.launcher.mac.service</string>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/var/opt/AuraService.log</string>
<key>StandardErrorPath</key>
<string>/var/opt/AuraServiceError.log</string>
<key>Program</key>
<string>/Applications/TextEdit.app/Contents/MacOS/TextEdit</string>
<key>Debug</key>
<true/>
<key>RunAtLoad</key>
<true/>
</dict>
¿Qué estoy haciendo mal?