prevent usless assignment of home

This commit is contained in:
Brian Coca 2015-07-18 23:28:41 -04:00 committed by Matt Clay
parent ac41e7c669
commit 7a6c8251dd

View file

@ -257,7 +257,6 @@ class User(object):
self.group = module.params['group'] self.group = module.params['group']
self.groups = module.params['groups'] self.groups = module.params['groups']
self.comment = module.params['comment'] self.comment = module.params['comment']
self.home = module.params['home']
self.shell = module.params['shell'] self.shell = module.params['shell']
self.password = module.params['password'] self.password = module.params['password']
self.force = module.params['force'] self.force = module.params['force']
@ -274,6 +273,7 @@ class User(object):
self.ssh_comment = module.params['ssh_key_comment'] self.ssh_comment = module.params['ssh_key_comment']
self.ssh_passphrase = module.params['ssh_key_passphrase'] self.ssh_passphrase = module.params['ssh_key_passphrase']
self.update_password = module.params['update_password'] self.update_password = module.params['update_password']
self.home = None
self.expires = None self.expires = None
if module.params['home'] is not None: if module.params['home'] is not None: