Skip to content

Instantly share code, notes, and snippets.

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 sachin-slathia/5890cfd642d49f6a6711acaae10ee905 to your computer and use it in GitHub Desktop.
Save sachin-slathia/5890cfd642d49f6a6711acaae10ee905 to your computer and use it in GitHub Desktop.
---
- name: Use test-servers
hosts: test-servers
become: yes
become_user: root
vars:
source: /home/knoldus/Personal/blogs/Ansible/blog1.txt
destination: /tmp
tasks:
- name: copy local files to remote machines
template:
src: "{{ source }}"
dest: "{{ destination }}"
owner: root
group: root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment