Forked from alecharp/keep-jenkins-plugins-uptodate.groovy
Created
May 27, 2019 22:44
-
-
Save kmcquade/28c1001363bcd5da6864459d7425b8c5 to your computer and use it in GitHub Desktop.
Simple groovy script to upgrade active plugins when new versions are available
This file contains hidden or 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
jenkins.model.Jenkins.getInstance().getUpdateCenter().getSites().each { site -> | |
site.updateDirectlyNow(hudson.model.DownloadService.signatureCheck) | |
} | |
hudson.model.DownloadService.Downloadable.all().each { downloadable -> | |
downloadable.updateNow(); | |
} | |
def plugins = jenkins.model.Jenkins.instance.pluginManager.activePlugins.findAll { | |
it -> it.hasUpdate() | |
}.collect { | |
it -> it.getShortName() | |
} | |
println "Plugins to upgrade: ${plugins}" | |
long count = 0 | |
jenkins.model.Jenkins.instance.pluginManager.install(plugins, false).each { f -> | |
f.get() | |
println "${++count}/${plugins.size()}.." | |
} | |
if(plugins.size() != 0 && count == plugins.size()) { | |
jenkins.model.Jenkins.instance.safeRestart() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment