我有一个启动的plist文件,该文件用于每天在选定的时间运行程序。它可以工作,但是每当我启动计算机或使用GUI程序LaunchControl-卸载并重新加载作业时,即使我将密钥设置为false,它也会运行该程序。RunAtLoad
完整的plist文件如下:它位于/Library/LaunchAgents/
:
<?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>RunAtLoad</key>
<false/>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>Label</key>
<string>com.adbot.plist</string>
<key>LowPriorityIO</key>
<true/>
<key>Program</key>
<string>/Users/wcm1/programming/ricedh/adbot/adbot.py</string>
<key>StandardErrorPath</key>
<string>/tmp/com.adbot.plist.err</string>
<key>StandardOutPath</key>
<string>/tmp/com.adbot.plist.out</string>
<key>StartCalendarInterval</key>
<array>
<dict>
<key>Hour</key>
<integer>10</integer>
<key>Minute</key>
<integer>30</integer>
</dict>
</array>
</dict>
</plist>
有什么想法吗?
KeepAlive
定义暗示RunAtLoad
,甚至凌驾于我设置RunAtLoad
为false的企图。不知道为什么会这样,但是取出KeepAlive
障碍似乎已经解决了问题。