Created
September 14, 2017 15:55
-
-
Save odavid/76b6874ed2b421b3eeb838aec0e9e040 to your computer and use it in GitHub Desktop.
A short script to delete free locks from the lockable resources plugin
This file contains 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
def manager = org.jenkins.plugins.lockableresources.LockableResourcesManager.get() | |
def resources = manager.getResources().findAll{ | |
!it.locked | |
} | |
resources.each{ | |
manager.getResources().remove(it) | |
} | |
manager.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. I modified line 3 to do searches using the lock's
name
, e.g.!it.locked && it.name.startsWith("docker_deploy")