blob: 94e1bba98558c67117f18112c0702359aadf1009 [file] [log] [blame]
/*
Copyright (c) 2015-2017 Sam Gleske - https://github.com/samrocketman/jenkins-bootstrap-shared
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
Disable all JNLP protocols except for JNLP4. JNLP4 is the most secure agent
protocol because it is using standard TLS.
*/
import jenkins.model.Jenkins
Jenkins j = Jenkins.instance
if(!j.isQuietingDown()) {
Set<String> agentProtocolsList = ['JNLP4-connect', 'Ping']
if(!j.getAgentProtocols().equals(agentProtocolsList)) {
j.setAgentProtocols(agentProtocolsList)
println "JNLP Agent Protocols have changed. Setting: ${agentProtocolsList}"
j.save()
}
else {
println "Nothing changed. JNLP Agent Protocols already configured: ${j.getAgentProtocols()}"
}
}
else {
println 'Shutdown mode enabled. Configure JNLP Agent Protocols SKIPPED.'
}