Merge pull request #1733 from tersmitten/the-tilde-expansion-doesnt-work-with-userhome

The tilde expansion doesn't work with user.home
reviewable/pr18780/r1
Brian Coca 9 years ago
commit 045b8e8cff

@ -271,6 +271,9 @@ class User(object):
self.update_password = module.params['update_password'] self.update_password = module.params['update_password']
self.expires = None self.expires = None
if module.params['home'] is not None:
self.home = os.path.expanduser(module.params['home'])
if module.params['expires']: if module.params['expires']:
try: try:
self.expires = time.gmtime(module.params['expires']) self.expires = time.gmtime(module.params['expires'])

Loading…
Cancel
Save