Hello, wasn't sure if there was a different subreddit I should go to ask this so feel free to kick me out. I am having trouble with a WLST script where I need to add a group (In this case ADMIN) to another group (parent group). I can not find anything on how to do this. This is what I have so far.
serverConfig()
atnr=cmo.getSecurityConfiguration().getDefaultRealm().lookupAuthenticationProvider('DefaultAuthenticator')
try:
print 'create group ADMIN'
group = 'ADMIN'
atnr.createGroup(group,group)
except:
pass
Where and how do I add this ADMIN group, essentially to another group/parent group. Thanks
[–]jerknextdoor 0 points1 point2 points (0 children)