Execution
Date 27 May 2025 18:54:48 +0100
Duration 00:00:06.60
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.2 / 1.7.2
Python 3.10.10
Summary
1 Hosts
2 Tasks
2 Results
1 Plays
2 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/upload_file.yaml

---
- name: Test upload
  hosts: all
  vars:
    files:
      - test/1.txt
      - test/2.txt
      - test/3.txt
  tasks:
    - name: Include a play after another play
      import_tasks: otherplays.yaml
    - name: Upload files
      ansible.builtin.copy:
        src: "{{ item }}"
        dest: /tmp/
        force: true
        mode: '0640'
      loop: "{{ files }}"