Execution
Date 29 Jan 2026 12:25:00 +0000
Duration 00:02:28.20
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.11
ara 1.7.4 / 1.7.4
Python 3.10.10
Summary
396 Hosts
2 Tasks
791 Results
1 Plays
1 Files
0 Records

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

---
- name: Fetch new panelini
  hosts: all
  gather_facts: false
  tasks:
    - name: Get info
      plesk_info:
      register: plsk
    - name: Install panelini on plesk
      when: plsk.plesk_found
      ansible.builtin.shell: |
        set -o pipefail
        cd /opt/ls_tools/panel-ini/
        /root/.local/bin/uv run run.py --fetch
        /root/.local/bin/uv run run.py --apply-new-template
      args:
        executable: /bin/bash
      changed_when: false