local.yml 250 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
---
- hosts: 127.0.0.1 # localhost ip
  connection: local

  tasks:
  - name: Hello Local
    ansible.builtin.debug:
      msg: "Hello local"

  - name: Copy files to local machine
    ansible.builtin.copy:
      src: files/note01.txt
      dest: ~/