启动代理未启动

时间:2017-04-18 23:38:09

标签: macos launchd launch-agent

我正在尝试创建一个启动a Python script的启动代理。它应该在有网络连接时运行,但它不会这样做。 launchctl list表示已加载:

launchctl list | grep test.Flopsey.DiscordMusicBot
-   0   test.Flopsey.DiscordMusicBot

当我使用launchctl start test.Flopsey.DiscordMusicBot开始时,它运行正常。 .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>Label</key>
    <string>test.Flopsey.DiscordMusicBot</string>
    <key>ProgramArguments</key>
    <array>
        <string>/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5</string>
        <string>/path/to/MusicBot/run.py</string>
    </array>
    <key>EnvironmentVariables</key>
    <dict>
        <key>PATH</key>
        <string>/bin:/usr/bin:/usr/local/bin</string>
    </dict>
    <key>StandardOutPath</key>
    <string>/path/to/MusicBot/log.log</string>
    <key>StandardErrorPath</key>
    <string>/path/to/MusicBot/log.log</string>
    <key>WorkingDirectory</key>
    <string>/path/to/MusicBot</string>
    <key>KeepAlive</key>
    <dict>
        <key>NetworkState</key>
        <true/>
    </dict>
</dict>
</plist>

我是新手,我跟着this tutorial。我认为我的问题的解决方案是非常基本的,但我不知道它可能是什么。我还制作了另一个类似的代理,它工作正常(与音乐机器人不同,它只有一个文件)。

更新

感谢@LCC的评论,我意识到使用NetworkState不再适用于OS X 10.10及更高版本。由于脚本在无法连接到Internet时退出,我可以将KeepAlive设置为<true/>并设置ThrottleInterval,因此如果不能,则在冷却后重新启动脚本连接。

0 个答案:

没有答案