OS X LaunchAgent WatchPaths不起作用,具有PID并且没有错误消息

时间:2013-02-12 10:14:31

标签: bash plist osx-mountain-lion launchd

我编写了一个小型LaunchAgent来监视更改文件夹并在发生更改时触发shell脚本:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
           http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.myusername.w2</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Users/myusername/Desktop/alert</string>
    </array>
    <key>WatchPaths</key>
    <array>
        <string>/Users/myusername/Personnel</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>WorkingDirectory</key>
    <string>/Users/myusername</string>
    <key>StandardErrorPath</key>
    <string>myjob.log</string>
    <key>StandardOutPath</key>
    <string>myjob.log</string>
    <key>Debug</key>
    <true/>
    <key>WaitForDebugger</key>
    <true/>

</dict>
</plist>
  • 文件名与Label
  • 相同
  • 我使用Launchctl加载并启动代理
  • 我退出/登录了我的会话
  • 我使用Launchctl列表检查并且代理具有正确的PID并且状态代码为0
  • 我的所有网址都是绝对的

尽管它没有按预期工作:我在监视文件夹中添加了一个文件,但脚本没有被触发。

是否创建了日志文件但是为空(没有错误?)

如果有人能指出正确的方向,那就太棒了。

2 个答案:

答案 0 :(得分:0)

要检查两件事:

  1. 删除“WaitForDebugger”键。 (至少,删除它允许我做一个有效的测试。显然,它有一个目的,但我无法建议如何将调试器附加到您的过程。)

  2. 确保/Users/myusername/Desktop/alert可执行(chmod +x /Users/myusername/Desktop/alert

答案 1 :(得分:0)

由于RunAtLoad选项设置为true,因此您的脚本会在您登录后立即启动。你说你在launchctl list输出中看到了一个PID。这意味着对于launchd,代理已经在运行,无需再次运行它。

我建议删除RunAtLoad密钥或使/Users/myusername/Desktop/alert脚本快速退出。您将在-输出的PID列中看到launchctl list符号。