Execution
Date 13 Aug 2025 11:02:12 +0100
Duration 00:02:21.84
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
400 Hosts
2 Tasks
795 Results
1 Plays
1 Files
0 Records

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

---
- name: Check diff
  hosts: all
  gather_facts: false
  tasks:
    - name: Get plesk info
      plesk_info:
      register: plsk
    - name: Get the diff on plesk server
      when: plsk.plesk_found
      ansible.builtin.shell: |
        set -o pipefail
        diff /usr/local/psa/admin/conf/panel.ini /usr/local/psa/admin/conf/panel.ini_20250813*
      args:
        executable: /bin/bash
      changed_when: false