mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Copy module can replace symlink with a real file.
This commit is contained in:
parent
54257a6a4c
commit
6354898b09
1 changed files with 5 additions and 1 deletions
|
@ -100,11 +100,15 @@ def main():
|
||||||
module.fail_json(msg="Destination %s not writable" % (os.path.dirname(dest)))
|
module.fail_json(msg="Destination %s not writable" % (os.path.dirname(dest)))
|
||||||
|
|
||||||
backup_file = None
|
backup_file = None
|
||||||
if md5sum_src != md5sum_dest:
|
if md5sum_src != md5sum_dest or os.path.islink(dest):
|
||||||
try:
|
try:
|
||||||
if backup:
|
if backup:
|
||||||
if os.path.exists(dest):
|
if os.path.exists(dest):
|
||||||
backup_file = module.backup_local(dest)
|
backup_file = module.backup_local(dest)
|
||||||
|
# allow for conversion from symlink.
|
||||||
|
if os.path.islink(dest):
|
||||||
|
os.unlink(dest)
|
||||||
|
open(dest, 'w').close()
|
||||||
#TODO:pid + epoch should avoid most collisions, hostname/mac for those using nfs?
|
#TODO:pid + epoch should avoid most collisions, hostname/mac for those using nfs?
|
||||||
# might be an issue with exceeding path length
|
# might be an issue with exceeding path length
|
||||||
dest_tmp = "%s.%s.%s.tmp" % (dest,os.getpid(),time.time())
|
dest_tmp = "%s.%s.%s.tmp" % (dest,os.getpid(),time.time())
|
||||||
|
|
Loading…
Reference in a new issue