123456789101112131415161718192021222324252627282930313233 |
- <?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>com.saltstack.salt.minion</string>
- <key>RunAtLoad</key>
- <true/>
- <key>KeepAlive</key>
- <true/>
- <key>ProgramArguments</key>
- <array>
- <string>/opt/salt/bin/start-salt-minion.sh</string>
- </array>
- <key>SoftResourceLimits</key>
- <dict>
- <key>NumberOfFiles</key>
- <integer>100000</integer>
- </dict>
- <key>HardResourceLimits</key>
- <dict>
- <key>NumberOfFiles</key>
- <integer>100000</integer>
- </dict>
- <!-- uncomment the lines below to debug launchd issues -->
- <!--
- <key>StandardOutPath</key>
- <string>/tmp/salt-minion.out</string>
- <key>StandardErrorPath</key>
- <string>/tmp/salt-minion.err</string>
- -->
- </dict>
- </plist>
|