Expand tilde in paths in file module

pull/4420/head
willthames 2013-09-05 14:43:42 +10:00
parent 7e849ac7e0
commit fe70ed94e3
1 changed files with 2 additions and 0 deletions

View File

@ -222,6 +222,8 @@ class AnsibleModule(object):
path = params.get('path', params.get('dest', None))
if path is None:
return {}
else:
path = os.path.expanduser(path)
mode = params.get('mode', None)
owner = params.get('owner', None)