launchd sembra ignorare StartCalendarInterval su Yosemite


9

Ho provato ad aggiornare Homebrew in tempo con launchd. Il mio file plist è presentato qui:

<?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>ms.liu.homebrew.update</string>
  <key>UserName</key>
  <string>LiuMS</string>
  <key>ProcessType</key>
  <string>Background</string>
  <key>EnvironmentVariables</key>
  <key>ProgramArguments</key>
  <array>
    <string>/usr/local/bin/brew</string>
    <string>update</string>
  </array>
  <key>StartCalendarInterval</key>
  <dict>
    <key>Hour</key>
    <integer>20</integer>
    <key>Minute</key>
    <integer>0</integer>
  </dict>
  <key>StandardOutPath</key>
  <string>/usr/local/logs/ms.liu.homebrew.update.out</string>
  <key>StandardErrorPath</key>
  <string>/usr/local/logs/ms.liu.homebrew.update.err</string>
</dict>
</plist>

Funziona in qualche modo: posso eseguire launchctl start ms.liu.homebrew.updatemanualmente per aggiornare il mio Homebrew. Tuttavia, launchd non esegue questo servizio periodicamente: le ultime modifiche al file a cui reindirizza stdout sono due giorni fa.

Ho cercato di ottenere informazioni su questo servizio ma non ho ottenuto nulla:

> launchctl print user/%MyPID%/ms.liu.homebrew.update`` 
Could not find service "ms.liu.homebrew.update" in domain for uid: %MyPID%

Sembra che non abbia caricato correttamente il mio servizio. Come? L'ho usato launchctl loadma sembra che sia stato deprecato. La pagina man raccomanda invece bootstrap:

> launchctl bootstrap user/%MyPID% %Path-to-plist%
> %Path-to-plist%: Service cannot load in requested session

Cosa dovrei fare? Come usare correttamente launchctl bootstrape launchctl print?

Sto eseguendo OS X Yosemite GM Candidate 1 su MacBookPro con display Retina (2013).

Risposte:


2

Sto solo iniziando a elaborare questa roba, quindi questa risposta è provvisoria, ma spero sia più utile di nessuna risposta. (Lo avrei lasciato come commento se avessi avuto abbastanza rappresentante.)

Questo plist è nella tua ~/Library/LaunchAgentsdirectory? Sembra che questi siano bootstrap nel tuo guidominio, non nel tuo userdominio. Quindi puoi fare:

launchctl print gui/%UID%/ms.liu.homebrew.update

e dovrebbe funzionare. (Lo fa?)

Presumibilmente il motivo per cui non è possibile avviarlo nel userdominio è che è già avviato nel guidominio.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.