Skip to content

Instantly share code, notes, and snippets.

@printesoi
Created July 27, 2017 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save printesoi/db3acfc73a98489cf39cc967b282ac14 to your computer and use it in GitHub Desktop.
Save printesoi/db3acfc73a98489cf39cc967b282ac14 to your computer and use it in GitHub Desktop.
---
- hosts: target
tasks:
- name: download the file on the local machine
get_url:
url: http://code.jquery.com/jquery-3.2.1.js
dest: /tmp/jquery.js
delegate_to: localhost
- name: copy the file to the target machine
copy:
src: /tmp/jquery.js
dest: /opt/jquery.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment