MacOS/Creating Launch Daemons and Agents: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 30: Line 30:


==References==
==References==
* [https://stackoverflow.com/questions/6337513 How can I debug a Launch script]
* [http://cdn.chorke.org/wiki/MacOS/Creating_Launch_Daemons_and_Agents Creating Launch Daemons and Agents]
* [http://cdn.chorke.org/wiki/MacOS/Creating_Launch_Daemons_and_Agents Creating Launch Daemons and Agents]
* [https://medium.com/@fahimhossain_16989/adding-startup-scripts-to-launch-daemon-on-mac-os-x-sierra-10-12-6-7e0318c74de1 Adding Startup Scripts to Launch Daemon]

Revision as of 02:43, 13 June 2019

Plist

<!-- cp /usr/local/opt/chorke/academia/etc/init.d/org.chorke.academia.amqpd.startup.plist -->
<?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>org.chorke.academia.amqpd.startup</string>
    <key>Disabled</key>          <false/>
    <key>RunAtLoad</key>         <true/>
    <key>KeepAlive</key>         <false/>
    <key>LaunchOnlyOnce</key>    <true/>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/local/opt/chorke/academia/etc/init.d/amqpd.sh</string>
        <string>restart</string>
    </array>
    <key>StandardErrorPath</key> <string>/tmp/amqpd.err</string>
    <key>StandardOutPath</key>   <string>/tmp/amqpd.out</string>
</dict>
</plist>

Where

/System/Library/LaunchDaemons/
/System/Library/LaunchAgents/
/Library/LaunchDaemons/
/Library/LaunchAgents/

References