launchd 似乎忽略了 Yosemite 上的 StartCalendarInterval

launchd 似乎忽略了 Yosemite 上的 StartCalendarInterval

我尝试使用 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 重定向到的文件的最后更改是两天前。

我尝试获取有关此服务的信息,但一无所获:

> 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 bootstraplaunchctl print

我在配备 Retina 显示屏的 MacBookPro(2013)上运行 OS X Yosemite GM Candidate 1。

答案1

我才刚刚开始研究这个问题,所以这个答案是暂时的——但我希望它比没有答案更有帮助。(如果我有足够的声望,我会把它留作评论。)

这个 plist 在你的~/Library/LaunchAgents目录中吗?看来这些是引导到你的gui域中,而不是你的user域中。因此你可以执行以下操作:

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

并且它应该可以工作。(可以吗?)

据推测您无法将其引导到域中的原因user是它已经引导到域中gui

相关内容