Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Created May 6, 2020 21:19
Show Gist options
  • Save gwsu2008/6dd51a33798d52b241227a00b7f19c5c to your computer and use it in GitHub Desktop.
Save gwsu2008/6dd51a33798d52b241227a00b7f19c5c to your computer and use it in GitHub Desktop.
remove-offline-nodes.groovy
for (aSlave in hudson.model.Hudson.instance.slaves) {
if (aSlave.getComputer().isOffline()) {
aSlave.getComputer().setTemporarilyOffline(true,null);
aSlave.getComputer().doDoDelete();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment