Execution
Date 03 Nov 2025 10:58:37 +0000
Duration 00:03:40.41
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.3 / 1.7.3
Python 3.10.10
Summary
398 Hosts
2 Tasks
793 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-disperse-bash-script.yaml

---
- name: Playbook to upload scripts files
  hosts: all
  gather_facts: false
  tasks:
    - name: Get plesk
      plesk_info:
      register: pl
    - name: Upload the file
      when: pl.plesk_found
      ansible.builtin.copy:
        src: zz-mysqlini-removed.sh
        dest: /root/zz-mysqlini-removed.sh
        mode: '0755'
      changed_when: false