매일 선택한 시간에 프로그램을 실행하는 데 사용되는 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
거짓 으로 설정하려는 시도를 무시하고있는 것으로 보입니다 . 왜 그런지 잘 모르겠지만KeepAlive
블록을 꺼내면 문제가 해결 된 것 같습니다.