I have a task in my ansible playbook, that downloads a java archive from a github url. The task is here:
- name: Download Jar Plugin
get_url:
url: https://GitHub-URL/plugins-1.0.5.jar
dest: /app/plugins/
There's no mention of checksum, yet it gives this error:
fatal: [host]: FAILED! => {"changed": false, "msg": "attempted to take checksum of directory: /app/plugins/plugins-1.0.5.jar"}
anyone has any idea about this? Is there any workaround to make it download this java archive?