Skip to content

Instantly share code, notes, and snippets.

View printesoi's full-sized avatar

Victor Dodon printesoi

View GitHub Profile
---
- name: Task 1 {{ var }}
debug:
var: var
- name: Task 2
command: date
register: date
changed_when: false
---
- hosts: localhost
vars:
list:
- ala
- bala
- portocala
tasks:
- include: r1-include.yml
---
- 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