1

我正在尝试制作一个启动Python 脚本的启动代理。它应该在有网络连接时运行,但它不这样做。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>

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

更新

感谢@LCC的评论,我意识到 usingNetworkState在 OS X 10.10 及更高版本上不再起作用。由于脚本在无法连接到 Internet 时退出,因此我可以设置KeepAlive<true/>设置一个ThrottleIntervalsolaunchd,如果无法连接,则在冷却后重新启动脚本。

4

0 回答 0