Code was adding '-a' even when the user was already in the desired groups causing usermod to fail since there was no '-G' option. This is duplicate code (3 lines) from the 'group' section, so could be improved, but it works.
This commit is contained in:
parent
9a54cda6f2
commit
27b562fce8
1 changed files with 4 additions and 1 deletions
5
user
5
user
|
@ -162,7 +162,10 @@ def user_mod(user, **kwargs):
|
|||
elif key == 'append':
|
||||
if kwargs[key] is not None and kwargs[key] == 'yes':
|
||||
if 'groups' in kwargs and kwargs['groups'] is not None:
|
||||
cmd.append('-a')
|
||||
defined_groups = kwargs['groups'].split(',')
|
||||
existing_groups = user_group_membership(user)
|
||||
if sorted(defined_groups) != sorted(existing_groups):
|
||||
cmd.append('-a')
|
||||
# skip if no changes to be made
|
||||
if len(cmd) == 1:
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue