私はlaunchdに間に合うようにHomebrewを更新しようとしました。私のplistファイルはここにあります:
<?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>
どういうわけか機能します。launchctl start ms.liu.homebrew.update
を手動で実行してHomebrewを更新できます。ただし、launchdはこのサービスを定期的に実行しません。stdoutがリダイレクトするファイルへの最後の変更は2日前です。
このサービスに関する情報を取得しようとしましたが、何も得られませんでした。
> launchctl print user/%MyPID%/ms.liu.homebrew.update``
Could not find service "ms.liu.homebrew.update" in domain for uid: %MyPID%
サービスを正常にロードできなかったようです。どうやって? launchctl load
を使用しましたが、非推奨になっているようです。マニュアルページでは、代わりにbootstrap)を推奨しています。
> launchctl bootstrap user/%MyPID% %Path-to-plist%
> %Path-to-plist%: Service cannot load in requested session
私は何をすべきか? launchctl bootstrap
とlaunchctl print
を正しく使用する方法は?
私はOSX Yosemite GM Candidate 1 on MacBookPro with Retina display(2013)を実行しています。
私はこの問題を解決し始めたばかりなので、この回答は暫定的なものですが、まったく回答がないよりも役立つことを願っています。 (十分な担当者がいれば、コメントとして残しておいたでしょう。)
このplistはあなたの~/Library/LaunchAgents
ディレクトリにありますか?これらは、gui
ドメインではなく、user
ドメインにブートストラップされているようです。だからあなたはすることができます:
launchctl print gui/%UID%/ms.liu.homebrew.update
そしてそれはうまくいくはずです。 (そうですか?)
おそらく、それをuser
ドメインにbootstrapできない理由は、すでにgui
ドメインにブートストラップされているためです。