The tilde expansion doesn't work with user.home
This commit is contained in:
parent
e04a4a4114
commit
10cae0acb3
1 changed files with 3 additions and 0 deletions
|
@ -276,6 +276,9 @@ class User(object):
|
|||
self.update_password = module.params['update_password']
|
||||
self.expires = None
|
||||
|
||||
if module.params['home'] is not None:
|
||||
self.home = os.path.expanduser(module.params['home'])
|
||||
|
||||
if module.params['expires']:
|
||||
try:
|
||||
self.expires = time.gmtime(module.params['expires'])
|
||||
|
|
Loading…
Reference in a new issue