Running server density on startup on OS X (El Capitan Edition)
For some reason the existing solution for configuring server density to run on startup with OS X was failing for me. For whatever reason, this is what ended up working for me, and I dare not touch it now!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<?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.boxedice.sd-agent.start</string> <key>RunAtLoad</key> <true/> <key>StandardOutPath</key> <string>/tmp/sd-agent.out</string> <key>StandardErrorPath</key> <string>/tmp/sd-agent.err</string> <key>ProgramArguments</key> <array> <string>/usr/bin/python</string> <string>/usr/local/bin/sd-agent/agent.py</string> <string>start</string> </array> </dict> </plist> |