mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6571 from bcoca/file_fixes_copydir
fixed issue with directory permissions on copy
This commit is contained in:
commit
efcf93f280
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ def main():
|
||||||
src = os.path.expanduser(src)
|
src = os.path.expanduser(src)
|
||||||
|
|
||||||
# original_basename is used by other modules that depend on file.
|
# original_basename is used by other modules that depend on file.
|
||||||
if os.path.isdir(path) and state not in ["link", "absent", "directory"]:
|
if os.path.isdir(path) and state not in ["link", "absent"]:
|
||||||
if params['original_basename']:
|
if params['original_basename']:
|
||||||
basename = params['original_basename']
|
basename = params['original_basename']
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue