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.update
manualmente 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 load
ma 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 bootstrap
e launchctl print
?
Sto eseguendo OS X Yosemite GM Candidate 1 su MacBookPro con display Retina (2013).