Skip to content

Instantly share code, notes, and snippets.

@jmoberly
Last active January 2, 2016 18:18
Show Gist options
  • Save jmoberly/8342125 to your computer and use it in GitHub Desktop.
Save jmoberly/8342125 to your computer and use it in GitHub Desktop.
launchd plist for a bamboo agent on Mac. Just replace the values for your setup. You may have to create a wrapper script to call the Jar file. Make sure to give the sh file execute permission.
<?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.atlassian.bamboo</string>
<key>UserName</key>
<string>username_goes_here</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Bamboo/bamboo.sh</string>
<string>console</string>
</array>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment