From 76fd19c3cad3c1f5db66aa6668ffcfe01bb5ac2c Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 2 Nov 2016 10:15:51 -0400 Subject: dont join when group is none --- system/user.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'system') 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: -- cgit v1.2.1