already call expanduser in action_plugin
This commit is contained in:
parent
5f0e882d01
commit
b0f00cc097
2 changed files with 4 additions and 4 deletions
|
@ -48,9 +48,9 @@ class ActionModule(object):
|
|||
if complex_args:
|
||||
options.update(complex_args)
|
||||
options.update(utils.parse_kv(module_args))
|
||||
source = options.get('src', None)
|
||||
source = os.path.expanduser(options.get('src', None))
|
||||
content = options.get('content', None)
|
||||
dest = options.get('dest', None)
|
||||
dest = os.path.expanduser(options.get('dest', None))
|
||||
raw = utils.boolean(options.get('raw', 'no'))
|
||||
force = utils.boolean(options.get('force', 'yes'))
|
||||
|
||||
|
|
|
@ -113,8 +113,8 @@ def main():
|
|||
add_file_common_args=True,
|
||||
)
|
||||
|
||||
src = os.path.expanduser(module.params['src'])
|
||||
dest = os.path.expanduser(module.params['dest'])
|
||||
src = module.params['src']
|
||||
dest = module.params['dest']
|
||||
backup = module.params['backup']
|
||||
force = module.params['force']
|
||||
original_basename = module.params.get('original_basename',None)
|
||||
|
|
Loading…
Reference in a new issue