Launchctl dice che plist non è valido, plutil dice che va bene

4

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.

    
posta LiberalArtist 16.04.2015 - 03:06
fonte

2 risposte

8

Le prime righe dovrebbero essere

<?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">
<plist version="1.0">
<dict>

Il tuo file (così come quello nella risposta collegata) manca la parte <plist version="1.0"> .

    
risposta data 16.04.2015 - 06:29
fonte
-1

Un plist totalmente vuoto assomiglia a questo:

<?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/>
</plist>

Uso PlistEdit Pro quando devo fare molti cambiamenti, poiché è facile commettere errori.

    
risposta data 16.04.2015 - 09:55
fonte

Leggi altre domande sui tag