Sto provando ad avere launchd eseguire uno script di shell quando mi unisco a una nuova rete WiFi. Ho creato questo file plist (strettamente basato su questa risposta SuperUser ) a /Users/myname/Library/LaunchAgents/my.networkChangeListener.plist
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" \
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<dict>
<key>Label</key>
<string>my.networkChangeListener</string>
<key>LowPriorityIO</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/Users/myname/bin/networkChangeListener/onNetworkChange.sh</string>
</array>
<key>WatchPaths</key>
<array>
<string>/etc/resolv.conf</string>
<string>/Library/Preferences/SystemConfiguration/NetworkInterfaces.plist</string>
<string>/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Il mio utente è il proprietario del plist e il gruppo è "staff".
Quando provo a caricare il file eseguendo launchctl load ~/Library/LaunchAgents/my.networkChangeListener.plist
, viene visualizzato un errore che dice "Elenco di proprietà non valido".
Tuttavia, quando eseguo plutil ~/Library/LaunchAgents/my.networkChangeListener.plist
, restituisce "OK"
Qual è il problema con il mio file Plist? È qualcosa di specifico da lanciare? Sono completamente a un punto morto per come eseguire il debug di questo.