ce n'launchd statut 78 veux dire?? pourquoi mon agent utilisateur ne fonctionne pas??

Je veux courir à l'unisson le service de synchronisation de l'exécution en arrière-plan chaque fois que je me connecte. Mais le code de statut de mon agent est 78. Je ne sais pas pourquoi, j'ai essayé quelques corrigé en ligne, mais il ne fonctionne tout simplement pas.

Quel est le problème?? ci-dessous le fichier plist pour mon service.

<?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>syncmyproject</string>
    <key>StandardOutPath</key>
    <string>/var/log/syncmyproject.log</string>
    <key>StandardErrorPath</key>
    <string>/var/log/syncmyproject.log</string>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <true/>
    <key>Debug</key>
    <true/>
    <key>EnableGlobbing</key>
    <true/>
    <key>ProgramArguments</key>
    <array>
      <string>/usr/local/bin/unison</string>
      <string>-auto</string>
      <string>-batch</string>
      <string>-repeat watch</string>
      <string>~/home/project</string>
      <string>~/project</string>
    </array>
</dict>
</plist>
  • Vous pouvez grep ce fichier pour d'éventuels indices quant à ce qui est erroné: /var/log/system.log
InformationsquelleAutor Aaron Shen | 2015-12-11