Execution
Date 18 Nov 2025 13:04:15 +0000
Duration 00:00:06.31
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
0 Hosts
1 Tasks
0 Results
1 Plays
1 Files
0 Records

File: /home/ssh-gateway/ansible/kuly/RM10197-install-botstopper.yaml

---
- name: Playbook to install botstopper on plesk servers
  hosts: all
  gather_facts: false
  tasks:
    - name: Get server info
      plesk_info:
      register: pl
    - name: Do action on plesk server and not botstopper
      when: pl.plesk_found and not pl.botstopper_found
      ansible.builtin.debug:
        msg: "Found it!"
      register: a
      changed_when: true