Sto cercando di creare un semplice Launch Agent che esegua un'app di test al caricamento del sistema. Ho seguito la documentazione ufficiale, ma non riesco a farlo funzionare. il mio file plist si trova in /Library/LaunchAgents/Test.launcher.mac.service.plist. a ls -l restituisce:
-rwx------@ 1 root wheel 578 Jan 21 08:46 /Library/LaunchAgents/Test.launcher.mac.service.plist.
il contenuto del mio plist è:
<?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>
cosa sto facendo male?