Created
November 14, 2012 17:22
-
-
Save lukeredpath/4073466 to your computer and use it in GitHub Desktop.
Launcher for TeamCity OSX Build Agent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>WorkingDirectory</key> | |
<string>/Users/teamcity/TeamCity/buildAgent</string> | |
<key>Debug</key> | |
<false/> | |
<key>Label</key> | |
<string>jetbrains.teamcity.BuildAgent</string> | |
<key>KeepAlive</key> | |
<true/> | |
<key>ProgramArguments</key> | |
<array> | |
<string>launcher/bin/TeamCityAgentService-macosx-universal-32</string> | |
<string>-c</string> | |
<string>../conf/wrapper.conf</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StandardErrorPath</key> | |
<string>logs/launchd.err.log</string> | |
<key>StandardOutPath</key> | |
<string>logs/launchd.out.log</string> | |
<key>UserName</key> | |
<string>teamcity</string> | |
<key>LimitLoadToSessionType</key> | |
<string>Aqua</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment