-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add groovy script to enable random port for JNLP connection (#226)
- Loading branch information
1 parent
f437953
commit 54b2d2b
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
modules/profile/files/jenkins/master/enable_tcp_agents.groovy
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* Enable TCP port for inbound agents */ | ||
|
||
/* This script is designed to be run via jenkins-cli.jar in order to enable | ||
* connection from agents. | ||
*/ | ||
|
||
import jenkins.model.Jenkins | ||
|
||
def instance=jenkins.model.Jenkins.instance | ||
instance.setSlaveAgentPort(0) | ||
instance.save() |
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