Skip to content

Instantly share code, notes, and snippets.

@krdlab
Created December 10, 2018 10:39
Show Gist options
  • Save krdlab/f41c3cb89d19c9dad10f0cc252080e0a to your computer and use it in GitHub Desktop.
Save krdlab/f41c3cb89d19c9dad10f0cc252080e0a to your computer and use it in GitHub Desktop.
Jenkins のジョブを一括で無効化する
jenkins.model.Jenkins.instance.items.each {
println "\nJob: ${it.name}"
it.disabled = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment