reset_pwds.py exculde ddadmin user
parent
d2f0f66805
commit
bda5fbca6e
|
@ -52,7 +52,7 @@ class KeycloakClient():
|
|||
users=self.get_users_with_groups_and_roles()
|
||||
userupdate=[]
|
||||
for u in users:
|
||||
if u['username'] not in ['admin'] and not u['username'].startswith('system_'):
|
||||
if u['username'] not in ['admin','ddadmin'] and not u['username'].startswith('system_'):
|
||||
print('Generating password for user '+u['username'])
|
||||
userupdate.append({'id':u['id'],
|
||||
'username':u['username'],
|
||||
|
@ -132,4 +132,4 @@ class KeycloakClient():
|
|||
return list_dict_users
|
||||
|
||||
k=KeycloakClient()
|
||||
k.update_pwds()
|
||||
k.update_pwds()
|
||||
|
|
Loading…
Reference in New Issue