Dear All,
We have the script runner add-on in our JIRA instance and we are planning to use the plugin for bulk deactivation of users in JIRA. The script is as shown in the link below
https://www.adaptavist.com/doco/display/SFJ/Automatically+deactivate+inactive+JIRA+users
The script has worked perfectly in our test environment.
But we have noticed that our Confluence system uses "JIRA Server" as the User Directory. that is users who are deactivated in JIRA (after running the script) will not be able to access confluence as well. Is there a way to modify the code so that it can fetch users from "jira-users" group and look for last login and deactivate the inactive users, instead of fetching all users and deactivating them. Kindly advise. Thanks
Regards
Niran
Looking at the code from the link there is this line which does the fetching of all users from JIRA:
userUtil.getUsers().findAll{it.isActive()}.each {
<deactivation code>
}
Change:
userUtil.getUsers().findAll{it.isActive()}.each {
to
userUtil.getUsersInGroupNames(["Group1","Group2"]).findAll{it.isActive()}.each {
This should only pull the users from the particular groups you want to target.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.