11 lines
197 B
YAML
11 lines
197 B
YAML
|
- hosts: workstation
|
||
|
gather_facts: False
|
||
|
vars: {}
|
||
|
tasks:
|
||
|
- name: Copy arch install config files
|
||
|
copy:
|
||
|
src: /users/rolando/myfile
|
||
|
dest: /users/rolando/myfile
|
||
|
|
||
|
|