18 lines
378 B
YAML
18 lines
378 B
YAML
---
|
|
- hosts: all
|
|
vars_prompt:
|
|
- name: path
|
|
prompt: "Enter path to file"
|
|
private: no
|
|
- name: remote_path
|
|
prompt: "Enter path to copy file to"
|
|
private: no
|
|
tasks:
|
|
- name: Copy file to remote hosts
|
|
copy:
|
|
src: "{{ path }}"
|
|
dest: "{{ remote_path }}"
|
|
owner: akshun
|
|
group: akshun
|
|
mode: u=rw,g=rw,o=r
|