Hi,
I’m tryning to make this on a file
`
- name: download jts-1.13.jar
get_url:
url: http://search.maven.org/remotecontent?filepath=com/vividsolutions/jts/1.13/jts-1.13.jar -O jts-1.13.jar
dest: /tmp/jts-1.13.jar
`
but get this error
TASK [download jts-1.13.jar] *************************************************** fatal: [localhost]: FAILED! => {"changed": false, "dest": "/tmp/jts-1.13.jar", "failed": true, "msg": "Request failed: <urlopen error [Errno 113] No route to host>", "state": "absent", "url": "http://search.maven.org/remotecontent?filepath=com/vividsolutions/jts/1.13/jts-1.13.jar -O jts-1.13.jar"}
on terminal if I do like this it works
wget [http://search.maven.org/remotecontent?filepath=com/vividsolutions/jts/1.13/jts-1.13.jar -O jts-1.13.jar](http://search.maven.org/remotecontent?filepath=com/vividsolutions/jts/1.13/jts-1.13.jar%20-O%20jts-1.13.jar)
If someone could help I appreciate
Thanks in advance
Pedro