Mac启动守护程序不断加载防火墙shell脚本

时间:2013-08-26 07:45:00

标签: macos shell launchd

启动守护程序正常工作,但现在问题是它继续加载相同的shell脚本,我可以看到同一规则的多个条目。 sudo ipfw list。如何防止这种情况?

<?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.apple.ipfw</string>
    <key>OnDemand</key>
    <false/>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/local/ipfw.apple.startup.sh</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>ServiceDescription</key>
    <string>Apple IPFW Filter Rules</string>
    <key>StandardErrorPath</key>
    <string>/var/log/ipfw.apple.stderr</string>
    <key>StandardOutPath</key>
    <string>/var/log/ipfw.apple.stdout</string>
    <key>UserName</key>
    <string>root</string>
</dict>

1 个答案:

答案 0 :(得分:1)

在plist文件中使用LaunchOnlyOnce键。

  

LaunchOnlyOnce:        此可选键指定作业是否只能运行一次且仅运行一次。换句话说,如果        如果没有完整的机器重启,就无法安全地重新生成作业,然后将此键设置为true。