aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jenkins.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-11-14 22:58:38 +0000
committerMike McQuaid2013-11-14 22:58:38 +0000
commitf99ca1816a7229fb6a57dec2155098c8ea6343ad (patch)
treea8361004efd9b3da561d0be0822fa2094a162e62 /Library/Formula/jenkins.rb
parentc46c3fcb2ea054bb9848e4cf69389c2f14ae362c (diff)
downloadhomebrew-f99ca1816a7229fb6a57dec2155098c8ea6343ad.tar.bz2
jenkins: default to 8080 in plist.
Diffstat (limited to 'Library/Formula/jenkins.rb')
-rw-r--r--Library/Formula/jenkins.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/jenkins.rb b/Library/Formula/jenkins.rb
index dc39d784d..7f66d3caf 100644
--- a/Library/Formula/jenkins.rb
+++ b/Library/Formula/jenkins.rb
@@ -32,6 +32,7 @@ class Jenkins < Formula
<string>-jar</string>
<string>#{opt_prefix}/libexec/jenkins.war</string>
<string>--httpListenAddress=127.0.0.1</string>
+ <string>--httpPort=8080</string>
</array>
<key>RunAtLoad</key>
<true/>
@@ -39,4 +40,9 @@ class Jenkins < Formula
</plist>
EOS
end
+
+ def caveats; <<-EOS.undent
+ Note: When using launchctl the port will be 8080.
+ EOS
+ end
end