mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-29 03:30:22 -07:00
copy: Handle "no copy/propagate attrs only" for recursive mode well.
For this, add internal "original_basename" param to file module, similar to copy module. (Param name is a bit misnormer now, should be treated as "original basepath").
This commit is contained in:
parent
ce88df3cf4
commit
2e668f14f7
2 changed files with 8 additions and 2 deletions
|
@ -217,7 +217,8 @@ class ActionModule(object):
|
||||||
if raw:
|
if raw:
|
||||||
# don't send down raw=no
|
# don't send down raw=no
|
||||||
module_args.pop('raw')
|
module_args.pop('raw')
|
||||||
module_args_tmp = "%s src=%s" % (module_args, pipes.quote(tmp_src))
|
module_args_tmp = "%s src=%s original_basename=%s" % (module_args,
|
||||||
|
pipes.quote(tmp_src), pipes.quote(source_rel))
|
||||||
if self.runner.noop_on_check(inject):
|
if self.runner.noop_on_check(inject):
|
||||||
module_args_tmp = "%s CHECKMODE=True" % module_args_tmp
|
module_args_tmp = "%s CHECKMODE=True" % module_args_tmp
|
||||||
module_return = self.runner._execute_module(conn, tmp, 'file', module_args_tmp, inject=inject, complex_args=complex_args)
|
module_return = self.runner._execute_module(conn, tmp, 'file', module_args_tmp, inject=inject, complex_args=complex_args)
|
||||||
|
|
|
@ -144,6 +144,7 @@ def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
state = dict(choices=['file','directory','link','hard','touch','absent'], default='file'),
|
state = dict(choices=['file','directory','link','hard','touch','absent'], default='file'),
|
||||||
path = dict(aliases=['dest', 'name'], required=True),
|
path = dict(aliases=['dest', 'name'], required=True),
|
||||||
|
original_basename = dict(required=False), # Internal use only, for recursive ops
|
||||||
recurse = dict(default='no', type='bool'),
|
recurse = dict(default='no', type='bool'),
|
||||||
force = dict(required=False,default=False,type='bool'),
|
force = dict(required=False,default=False,type='bool'),
|
||||||
diff_peek = dict(default=None),
|
diff_peek = dict(default=None),
|
||||||
|
@ -179,7 +180,11 @@ def main():
|
||||||
src = os.path.expanduser(src)
|
src = os.path.expanduser(src)
|
||||||
|
|
||||||
if src is not None and os.path.isdir(path) and state != "link":
|
if src is not None and os.path.isdir(path) and state != "link":
|
||||||
params['path'] = path = os.path.join(path, os.path.basename(src))
|
if params['original_basename']:
|
||||||
|
basename = params['original_basename']
|
||||||
|
else:
|
||||||
|
basename = os.path.basename(src)
|
||||||
|
params['path'] = path = os.path.join(path, basename)
|
||||||
|
|
||||||
file_args = module.load_file_common_arguments(params)
|
file_args = module.load_file_common_arguments(params)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue