summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/user.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/system/user.py b/system/user.py
index fd60b4f0..c424beea 100644
--- a/system/user.py
+++ b/system/user.py
@@ -263,7 +263,6 @@ class User(object):
self.non_unique = module.params['non_unique']
self.seuser = module.params['seuser']
self.group = module.params['group']
- self.groups = ','.join(module.params['groups'])
self.comment = module.params['comment']
self.shell = module.params['shell']
self.password = module.params['password']
@@ -283,6 +282,10 @@ class User(object):
self.update_password = module.params['update_password']
self.home = module.params['home']
self.expires = None
+ self.groups = None
+
+ if module.params['groups'] is not None:
+ self.groups = ','.join(module.params['groups'])
if module.params['expires']:
try: