I want to move a user in Slurm job scheduling system ,from its current group to other group. But there is errors when I try the obvious:
sacctmgr modify user where name=example set account=groupb
The only way I get is deleting it and creating again with the new account:
sacctmgr delete user example account=groupa
sacctmgr add user example account=groupb
Thanks