Skip to content
Snippets Groups Projects
Commit dfcc59a9 authored by Jacob Vosmaer (GitLab)'s avatar Jacob Vosmaer (GitLab)
Browse files

Merge pull request #8291 from MrMarvin/fix/ldap_cleanup_task

fixes the `block_removed_ldap_users` rake task
parents 53f05343 1f902c24
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -92,11 +92,11 @@ namespace :gitlab do
 
User.ldap.each do |ldap_user|
print "#{ldap_user.name} (#{ldap_user.extern_uid}) ..."
if Gitlab::LDAP::Access.open { |access| access.allowed?(ldap_user) }
if Gitlab::LDAP::Access.allowed?(ldap_user)
puts " [OK]".green
else
if block_flag
ldap_user.block!
ldap_user.block! unless ldap_user.blocked?
puts " [BLOCKED]".red
else
puts " [NOT IN LDAP]".yellow
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment