Execution
Date 16 Jan 2026 07:01:21 +0000
Duration 00:07:50.21
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
395 Hosts
3 Tasks
787 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/RM10253-add-plesk-php84-5.yaml

---
- name: Install plesks phps
  hosts: all
  gather_facts: true
  tasks:
    - name: Get info
      plesk_info:
      register: plsk
    - name: Install phps
      when: plsk.plesk_found and not plsk.imunify_found
      ansible.builtin.shell: |
        set -o pipefail
        /sbin/plesk installer add --components php8.4,php8.5
      args:
        executable: /bin/bash
      changed_when: plsk.plesk_found and not plsk.imunify_found