Execution
Date 26 Feb 2026 13:11:31 +0000
Duration 00:02:31.41
Controller ssh-gw-4.layershift.com
User root
Versions
Ansible 2.16.13
ara 1.7.4 / 1.7.4
Python 3.10.10
Summary
398 Hosts
2 Tasks
794 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/zz-imunif.yaml

---
- name: Asd
  hosts: all
  gather_facts: false
  tasks:
    - name: AAA
      plesk_info:
      register: pl
    - name: Save only the imunifyav ones
      when:
        - pl.plesk_found
        - pl.imunify_found
        - pl.imunify_license_type == "imunifyAV"
        - pl.imunify_license_type == "imunifyAVPlus"
      ansible.builtin.lineinfile:
        path: asd.txt
        create: true
        mode: '0644'
        line: "{{ inventory_hostname }}"
      delegate_to: 127.0.0.1