How to append the file using Ansible
问题 I'm trying to append a file to the existing file. When I hit a specific url I get the updated data everytime. my requirement is to append the updated to the same file instead of creating a new file everytime. I'm using get_url module to get the file. but the file is not being updated. If I give the destination as new file then data is being copied to new file. 回答1: get_url doesn't appear to support that operation. You may need to retrieve the file and use the Assemble module to concatenate