Hi, Off the top of my head I would consider the below approaches:
1) https://wiki.jenkins-ci.org/display/JENKINS/Build+Blocker+Plugin 2) groovy step You can easily disable any slaves via some groovy scripting as part of your build steps, maybe the first step. 3) server in maintenance mode, I believe you can run some CLI in order to switch on the maintained mode. In any case, there are some scenarios which you might fail, if there are some running jobs when that special job gets trigger and they should be stopped/aborted then the above approaches will not work. And you will need to code that logic, likely in groovy. My two cents -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/b46492ef-2e6f-4b9f-9cbd-8dd39641850c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
